/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-29 06:39:13 UTC
  • Revision ID: edam@waxworlds.org-20100729063913-wvcvkogsa2alwkhr
- moved basic_statement::operator <<() back to basic_statement and just create another specialisation in command so that it can use sqlite::exec

Show diffs side-by-side

added added

removed removed

23
23
#include <sqlite3cc/basic_statement.h>
24
24
#include <sqlite3cc/exception.h>
25
25
#include <sqlite3cc/database.h>
 
26
#include <sqlite3cc/manipulator.h>
26
27
#include <string.h>
27
28
 
28
29
 
168
169
{
169
170
        return sqlite3_step( _handle );
170
171
}
 
172
 
 
173
 
 
174
 
 
175
template< >
 
176
sqlite::basic_statement &sqlite::basic_statement::operator <<
 
177
        < sqlite::detail::null_t >(
 
178
        const sqlite::detail::null_t & )
 
179
{
 
180
        int code = bind_null( _bind_index );
 
181
        if( code != SQLITE_OK ) throw sqlite_error( _database, code );
 
182
        _bind_index++;
 
183
        return *this;
 
184
}
 
185
 
 
186
 
 
187
template< >
 
188
sqlite::basic_statement &sqlite::basic_statement::operator <<
 
189
        < sqlite::detail::set_index_t >(
 
190
        const sqlite::detail::set_index_t &t )
 
191
{
 
192
        _bind_index = t._index;
 
193
        return *this;
 
194
}