~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2010-02-26 17:18:21 UTC
  • mto: (1309.2.7 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1313.
  • Revision ID: brian@gaz-20100226171821-xy2lgitcqnytglsg
Baby steps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
namespace message { class Schema; }
29
29
 
30
 
bool mysql_create_db(Session *session, const message::Schema &schema_message, bool is_if_not_exists);
 
30
bool mysql_create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
31
31
bool mysql_alter_db(Session *session, const message::Schema &schema_message);
32
 
bool mysql_rm_db(Session *session, char *db, bool if_exists);
33
 
bool mysql_change_db(Session *session, const std::string &new_db_name, bool force_switch);
 
32
bool mysql_rm_db(Session *session, const std::string &schema_name, const bool if_exists);
 
33
bool mysql_change_db(Session *session, const std::string &new_db_name);
34
34
 
35
35
} /* namespace drizzled */
36
36