My Project
D:/source/c++/Programme/sally/sally/sallyAPI/Statement.h
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 #pragma once
00029 #include "Define.h"
00030 #include <sqlite3.h>
00031 #include "SQLException.h"
00032 #include "ResultSet.h"
00033 
00034 namespace SallyAPI
00035 {
00036         namespace Database
00037         {
00046 
00047                 class DLL_API_SALLY CStatement
00048                 {
00049                 private:
00050                         sqlite3*        m_pSqlite;
00051                         CResultSet*     m_pResultSet;
00052                 public:
00053                         CStatement(sqlite3 *pSqlite);
00054                         ~CStatement();
00055 
00056                         int                     Execute(const char* sql);
00057                         CResultSet*     ExecuteQuery(const char* sql);
00058                 };
00059         }
00060 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines