1#ifndef DatabaseFactory_h 
    2#define DatabaseFactory_h 
   16#include <QSqlDatabase> 
  272        return (_defDatabase);
 
 
  290        return (_defProfName);
 
 
  306        return (_profiles.
exists(name));
 
 
  311      bool isAvailable(
const QString &dbname = 
"") 
const;
 
  318               bool setAsDefault = 
false);
 
  319      void remove(
const QString &dbname);
 
  320      void destroy(
const QString &dbname);
 
  327      static void DieAtExit();
 
  332      typedef CollectorMap<IString, QString, NoCaseStringCompare> Drivers;
 
  334      typedef CollectorMap<IString, DbProfile, NoCaseStringCompare> Profiles;
 
  336      typedef CollectorMap<IString, QSqlDatabase, NoCaseStringCompare> Databases;
 
  338      QString _defProfName;         
 
  340      QString _defDatabase;         
 
  344      void initPreferences();
 
  346      Drivers getResourceList(
bool drivers, 
bool connections) 
const;
 
 
bool exists(const K &key) const
Checks the existance of a particular key in the list.
Definition CollectorMap.h:551
 
Create database interfaces using access profiles or generic drivers.
Definition DatabaseFactory.h:244
 
QSqlDatabase create(const QString &driver, const QString &dbname)
Create a database using the named driver.
Definition DatabaseFactory.cpp:358
 
static DatabaseFactory * getInstance()
Returns and instance of this DatabaseFactory singleton.
Definition DatabaseFactory.cpp:124
 
void destroy(const QString &dbname)
Removes the database from the connection pool and destroys it.
Definition DatabaseFactory.cpp:435
 
void remove(const QString &dbname)
Removes the database from the connection pool.
Definition DatabaseFactory.cpp:450
 
DbProfile getProfile(const QString &name="") const
Get the specified database access profile.
Definition DatabaseFactory.cpp:235
 
void add(const QSqlDatabase &db, const QString &name, bool setAsDefault=false)
Adds the database to the connection pool making it persistant.
Definition DatabaseFactory.cpp:415
 
bool isDriverAvailable(const QString &driver) const
Check for the existance of a specific database driver.
Definition DatabaseFactory.cpp:279
 
bool isPersistant(const QString &name) const
Checks if the database resource is persistant.
Definition DatabaseFactory.cpp:335
 
std::vector< QString > available() const
Determine what database drivers are available.
Definition DatabaseFactory.cpp:260
 
bool addAccessProfile(const QString &profileFile)
Establishes an access profile for subsequent database connections.
Definition DatabaseFactory.cpp:152
 
bool isAvailable(const QString &dbname="") const
Check for availablity of a database connection resource.
Definition DatabaseFactory.cpp:297
 
void addProfile(const DbProfile &profile)
Adds a database access profile to the list of profiles.
Definition DatabaseFactory.cpp:194
 
bool setDefaultProfileName(const QString &name)
Sets the default profile to the name provided.
Definition DatabaseFactory.h:304
 
QString getDefault() const
Returns the name of the default database.
Definition DatabaseFactory.h:271
 
std::vector< QString > getProfileList() const
Return list of names of currently available profiles.
Definition DatabaseFactory.cpp:207
 
bool isConnected(const QString &dbname) const
Determines if the database resource is connected.
Definition DatabaseFactory.cpp:315
 
void setDefault(const QString &name)
Sets the default name of the database.
Definition DatabaseFactory.h:258
 
QString getDefaultProfileName() const
Returns the name of the default profile.
Definition DatabaseFactory.h:289
 
A DbProfile is a container for access parameters to a database.
Definition DbProfile.h:51
 
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16