~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2010-03-01 05:38:54 UTC
  • mfrom: (1309.1.19 build)
  • Revision ID: brian@gaz-20100301053854-sojk4m6jc1yagk7s
MErge Strewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_DB_H
22
22
#define DRIZZLED_DB_H
23
23
 
 
24
#define DRIZZLE_DATA_DICTIONARY "data_dictionary"
 
25
 
24
26
namespace drizzled {
25
27
 
26
28
namespace message { class Schema; }
27
29
 
28
30
bool mysql_create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
29
31
bool mysql_alter_db(Session *session, const message::Schema &schema_message);
30
 
bool mysql_rm_db(Session *session, SchemaIdentifier &identifier, const bool if_exists);
31
 
bool mysql_change_db(Session *session, SchemaIdentifier &identifier);
 
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);
32
34
 
33
35
} /* namespace drizzled */
34
36