/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to src/basic_statement.cc

  • Committer: edam
  • Date: 2010-07-23 09:17:03 UTC
  • Revision ID: edam@waxworlds.org-20100723091703-3siqjj6eeux9hupz
- added NEWS
- added library checks to configure.ac
- added query::iterators
- remove dependency that rows have on querys (since querys have to be dependent on rows for boost::iterator_facade to work)
- rows now have the handle to the sqlite3 statement and know a count of their row number
- added convenience function tht can be used to detect presence of sqlite3cc in other packages
- updated test-main
- renamed all subdir.mk files to emake.mk

Show diffs side-by-side

added added

removed removed

174
174
 
175
175
template< >
176
176
sqlite::basic_statement &sqlite::basic_statement::operator <<
177
 
        < sqlite::detail::null_t >(
178
 
        const sqlite::detail::null_t & )
 
177
        < sqlite::_null_t >(
 
178
        const sqlite::_null_t & )
179
179
{
180
180
        int error_code = bind_null( _bind_index );
181
181
        if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
186
186
 
187
187
template< >
188
188
sqlite::basic_statement &sqlite::basic_statement::operator <<
189
 
        < sqlite::detail::exec_t >(
190
 
        const sqlite::detail::exec_t & )
 
189
        < sqlite::_exec_t >(
 
190
        const sqlite::_exec_t & )
191
191
{
192
192
        int error_code = step();
193
193
        if( error_code != SQLITE_DONE ) {
202
202
 
203
203
template< >
204
204
sqlite::basic_statement &sqlite::basic_statement::operator <<
205
 
        < sqlite::detail::set_index_t >(
206
 
        const sqlite::detail::set_index_t &t )
 
205
        < sqlite::_set_index_t >(
 
206
        const sqlite::_set_index_t &t )
207
207
{
208
208
        _bind_index = t._index;
209
209
        return *this;