~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/start_transaction.h

  • Committer: Lee Bieber
  • Date: 2011-01-15 03:08:27 UTC
  • mfrom: (1994.5.38 doc)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: kalebral@gmail.com-20110115030827-0h9s99kiknrmt9ti
Merge Stewart - some documentation clean up

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  start_transaction_option_t start_transaction_opt;
37
37
 
38
38
public:
39
 
  StartTransaction(Session *in_session, start_transaction_option_t opt= START_TRANS_NO_OPTIONS) :
40
 
    Statement(in_session),
41
 
    start_transaction_opt(opt)
42
 
  {
43
 
    getSession()->getLex()->sql_command= SQLCOM_BEGIN;
44
 
  }
 
39
  StartTransaction(Session *in_session, start_transaction_option_t opt= START_TRANS_NO_OPTIONS)
 
40
    :
 
41
      Statement(in_session),
 
42
      start_transaction_opt(opt)
 
43
  {}
45
44
 
46
45
  bool execute();
47
 
 
48
 
  /* we kinda cheat here as START TRANSACTION will start a transaction,
49
 
     so having an autocommit=off implicit start txn doesn't make sense. */
50
 
  bool isTransactional()
51
 
  {
52
 
    return false;
53
 
  }
54
46
};
55
47
 
56
48
} /* namespace statement */