~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/database_ms.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 10:31:37 UTC
  • mto: (2247.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2248.
  • Revision ID: olafvdspek@gmail.com-20110323103137-lwevis2tfchgu18u
Propogate return void

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 *
28
28
 */
29
29
 
 
30
#pragma once
30
31
#ifndef __DATABASE_MS_H__
31
32
#define __DATABASE_MS_H__
32
33
 
203
204
        
204
205
        static MSDatabase *getDatabase(CSString *db_name, bool create);
205
206
        static MSDatabase *getDatabase(const char *db_name, bool create);
206
 
        static MSDatabase *getDatabase(uint32_t db_id);
 
207
        static MSDatabase *getDatabase(uint32_t db_id, bool missing_ok = false);
207
208
        static uint32_t getDatabaseID(CSString *db_name, bool create);
208
209
        static uint32_t getDatabaseID(const char *db_name, bool create);
209
210