~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2010-02-24 23:10:30 UTC
  • mto: (1273.13.101 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100224231030-4dwc2iwcih5cootv
createSchema() now works via SE interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
namespace message { class Schema; }
31
31
 
32
 
bool mysql_create_db(Session *session, const char *db, message::Schema *schema_message, bool is_if_not_exists);
 
32
bool mysql_create_db(Session *session, message::Schema &schema_message, bool is_if_not_exists);
33
33
bool mysql_alter_db(Session *session, const char *db, message::Schema *schema_message);
34
34
bool mysql_rm_db(Session *session, char *db, bool if_exists);
35
35
bool mysql_change_db(Session *session, const LEX_STRING *new_db_name, bool force_switch);
 
36
 
 
37
int write_schema_file(const char *path, const message::Schema &db);
 
38
 
36
39
} /* namespace drizzled */
37
40
 
38
41
#endif /* DRIZZLED_DB_H */