Library: Data/ODBC
Package: ODBC
Header: Poco/Data/ODBC/ODBCStatementImpl.h
Implements statement functionality needed for ODBC
Direct Base Classes: Poco::Data::StatementImpl
All Base Classes: Poco::Data::StatementImpl, Poco::RefCountedObject
Member Functions: bindImpl, binder, canBind, columnsReturned, compileImpl, extractor, hasNext, metaColumn, nativeSQL, next
Inherited Functions: add, addBinding, addExtract, bindImpl, binder, bindings, canBind, columnsExtracted, columnsReturned, compileImpl, duplicate, execute, extractions, extractor, getState, hasNext, makeExtractors, metaColumn, next, referenceCount, release, reset, setExtractionLimit, toString
typedef std::vector < ODBCColumn * > ColumnPtrVec;
ODBCStatementImpl(
    SessionImpl & rSession
);
Creates the ODBCStatementImpl.
 
 Destroys the ODBCStatementImpl.
 
   
 void bindImpl();
Binds parameters
See also: Poco::Data::StatementImpl::bindImpl()
 
   
   
 AbstractBinder & binder();
Returns the concrete binder used by the statement.
See also: Poco::Data::StatementImpl::binder()
 
   
 bool canBind() const;
Returns true if a valid statement is set and we can bind.
See also: Poco::Data::StatementImpl::canBind()
 
   
   
 Poco::UInt32 columnsReturned() const;
Returns number of columns returned by query.
 
   
 void compileImpl();
Compiles the statement, doesn't bind yet
See also: Poco::Data::StatementImpl::compileImpl()
 
   
   
 AbstractExtractor & extractor();
Returns the concrete extractor used by the statement.
See also: Poco::Data::StatementImpl::extractor()
 
   
 bool hasNext();
Returns true if a call to next() will return data.
See also: Poco::Data::StatementImpl::hasNext()
 
   
   
 const MetaColumn & metaColumn(
    Poco::UInt32 pos
) const;
Returns column meta data.
See also: Poco::Data::StatementImpl::metaColumn()
 
 std::string nativeSQL();
Returns the SQL string as modified by the driver.
 
   
 void next();
Retrieves the next row from the resultset. Will throw, if the resultset is empty.
See also: Poco::Data::StatementImpl::next()