SQLite multiple statement handling

This commit is contained in:
Aleksandar Fabijanic
2008-01-21 00:56:52 +00:00
parent 1f47c0df2f
commit 5e1605823b
24 changed files with 441 additions and 232 deletions

View File

@@ -50,12 +50,13 @@ TestStatementImpl::~TestStatementImpl()
}
void TestStatementImpl::compileImpl()
bool TestStatementImpl::compileImpl()
{
// prepare binding
_ptrBinder = new Binder;
_ptrExtractor = new Extractor;
_ptrPrepare = new Preparation;
return false;
}

View File

@@ -83,7 +83,7 @@ protected:
bool canBind() const;
/// Returns true if a valid statement is set and we can bind.
void compileImpl();
bool compileImpl();
/// Compiles the statement, doesn't bind yet
void bindImpl();