mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-13 20:37:30 +01:00
SQLite multiple statement handling
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user