~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2010-03-31 05:53:34 UTC
  • Revision ID: brian@gaz-20100331055334-yqqmzlgqb2xq1p5b
Mass overhaul to use schema_identifier.

Show diffs side-by-side

added added

removed removed

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