~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

Show diffs side-by-side

added added

removed removed

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