LiteSQL
ocilib_backend.hpp
Go to the documentation of this file.
1 /* LiteSQL
2  *
3  * The list of contributors at http://litesql.sf.net/
4  *
5  * See LICENSE for copyright information. */
6 
9 #ifndef litesql_ocilib_backend_hpp
10 #define litesql_ocilib_backend_hpp
11 
12 #ifdef HAVE_OCILIB
13 
14 #include "litesql/except.hpp"
15 #include "litesql/types.hpp"
16 #include "litesql/string.hpp"
17 #include "litesql/backend.hpp"
18 
19 typedef struct OCI_Connection OCI_Connection;
20 
21 namespace litesql {
22 class OCILib : public Backend {
23  OCI_Connection *conn;
24  static bool oci_init;
25 public:
26  class Cursor;
27  class Result;
28 
29  OCILib(const std::string& connInfo);
30  virtual ~OCILib();
31  virtual std::string getCreateSequenceSQL(const std::string& name) const;
32  virtual std::string getSeqSQL(const std::string& sname) const;
33  /* virtual */ std::string getSQLType(AT_field_type fieldType,const std::string& length="") const;
34  //virtual string queryTerm() const { return "";}
35  virtual bool supportsSequences() const;
36  virtual void begin() const;
37  virtual void commit() const;
38  virtual void rollback() const;
39  Backend::Result* execute(const std::string& query) const;
40  Backend::Cursor* cursor(const std::string& query) const;
41 
42  static bool verbose;
43 
44 protected:
45  std::string checkError(bool shouldThrow=true) const;
46 };
47 }
48 #endif // #ifdef HAVE_OCILIB
49 #endif // #ifndef litesql_ocilib_backend_hpp
50 
Classes Backend, Backend::Cursor and Backend::Result.
contains litesql's exception classes
helpful string utils
contains class Record and typedef Records

SourceForge.net Logo