sqlite.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sqlite.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:49:25  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef SQLITE___SQLITE__HPP
  10. #define SQLITE___SQLITE__HPP
  11. /*  $Id: sqlite.hpp,v 1000.0 2003/10/29 20:49:25 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. // predeclaration saves us from polluting the global namespace with
  43. // all of sqlite
  44. struct sqlite;
  45. struct sqlite_vm;
  46. BEGIN_NCBI_SCOPE
  47. //
  48. // struct to handle SQLite's callback mechanism
  49. //
  50. struct ISQLiteCallback
  51. {
  52.     virtual ~ISQLiteCallback() {}
  53.     virtual int Callback(int argc, char** argv, char** cols) = 0;
  54. };
  55. class CSQLiteQuery;
  56. //
  57. // main SQLite interface class
  58. //
  59. class NCBI_XSQLITE_EXPORT CSQLite : public CObject
  60. {
  61. public:
  62.     // create a new SQLite interface class around a file.  This file will
  63.     // optionally be deleted on destruction (i.e., temporary out-of-core
  64.     // database)
  65.     CSQLite(const string& dbname, bool delete_file = false);
  66.     // create a new SQLite interface class for an in-memory database
  67.     CSQLite();
  68.     virtual ~CSQLite();
  69.     // Open a database.  Databases with the name ':memory:' are opened as
  70.     // in-core databases.  The delete flag is optionally used to specify
  71.     // that a call to Close() will destroy the file as well.
  72.     void Open(const string& dbname, bool delete_file = false);
  73.     // close the current database
  74.     void Close();
  75.     // compile a query for execution
  76.     CSQLiteQuery* Compile(const string& query) const;
  77.     // execute our commands, no callback
  78.     void Execute(const string& str);
  79.     // execute our commands, but ping a callback in the referenced class
  80.     void Execute(const string& str, ISQLiteCallback& cb);
  81.     // get the row index / key for the last insert statement.  This returns -1
  82.     // if the database is invalid
  83.     int GetLastRowID(void);
  84.     // returns the number of rows affected by the last execute statement
  85.     int GetRowsAffected(void);
  86.     // interrupt the current execution
  87.     void StopExecute(void);
  88.     // test to see if a file is a SQLite database
  89.     static bool IsValidDB(const string& str);
  90. private:
  91.     // abstract DB pointer
  92.     sqlite* m_DB;
  93.     // name of the file we use
  94.     string m_Filename;
  95.     // flag: should we delete the file on destruction?
  96.     bool m_DeleteFile;
  97.     // forbidden
  98.     CSQLite(const CSQLite&);
  99.     CSQLite& operator=(const CSQLite&);
  100. };
  101. ///////////////////////////////////////////////////////////////////////////
  102. //
  103. // class CSQLiteQuery is a simple interface to a query object
  104. class NCBI_XSQLITE_EXPORT CSQLiteQuery : public CObject
  105. {
  106.     friend class CSQLite;
  107. public:
  108.     ~CSQLiteQuery();
  109.     // retrieve the next row from our compiled query, returning false if there
  110.     // isn't one
  111.     bool NextRow(int& count, const char **& data, const char **& cols) const;
  112. protected:
  113.     sqlite* m_DB;
  114.     mutable sqlite_vm* m_Query;
  115.     // ctor protected - created only by CSQLite
  116.     CSQLiteQuery(sqlite_vm* query);
  117.     // clean-up
  118.     void x_CleanUp() const;
  119. };
  120. END_NCBI_SCOPE
  121. /*
  122.  * ===========================================================================
  123.  * $Log: sqlite.hpp,v $
  124.  * Revision 1000.0  2003/10/29 20:49:25  gouriano
  125.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  126.  *
  127.  * Revision 1.1  2003/09/29 12:24:40  dicuccio
  128.  * Initial revision
  129.  *
  130.  * ===========================================================================
  131.  */
  132. #endif  // SQLITE___SQLITE__HPP