~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
merge lp:~olafvdspek/drizzle/refactor4

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