~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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