~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/transaction_services.h

more updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
   *
206
206
   * @param session Session object which issued the statement
207
207
   * @param query Query string
 
208
   * @param schema Schema for the table affected by the raw SQL.
208
209
   */
209
 
  void rawStatement(Session::reference session, const std::string &query);
 
210
  void rawStatement(Session::reference session,
 
211
                    const std::string &query,
 
212
                    const std::string &schema);
 
213
 
 
214
  void rawStatement(Session::reference session, const std::string &query)
 
215
  {
 
216
    rawStatement(session, query, "");
 
217
  }
210
218
 
211
219
  /* transactions: interface to plugin::StorageEngine functions */
212
220
  int rollbackTransaction(Session::reference session, bool all);