9 #ifndef litesql_ocilib_backend_hpp
10 #define litesql_ocilib_backend_hpp
19 typedef struct OCI_Connection OCI_Connection;
22 class OCILib :
public Backend {
29 OCILib(
const std::string& connInfo);
31 virtual std::string getCreateSequenceSQL(
const std::string& name)
const;
32 virtual std::string getSeqSQL(
const std::string& sname)
const;
33 std::string getSQLType(AT_field_type fieldType,
const std::string& length=
"")
const;
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;
45 std::string checkError(
bool shouldThrow=
true)
const;
Classes Backend, Backend::Cursor and Backend::Result.
contains litesql's exception classes
contains class Record and typedef Records