34
34
boost::filesystem::remove( DBFILE );
37
sqlite::database db( DBFILE );
37
sqlite::connection db( DBFILE );
39
std::cout << "SQLite threading mode: " << sqlite::threadsafe() << "\n";
39
41
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
77
79
sqlite::query q1( db, "SELECT age, age + 3, name "
78
80
"FROM pets WHERE NOT age IS NULL "
79
81
"ORDER BY age ASC" );
83
// test column count and names
80
84
assert( q1.column_count() == 3 );
85
assert( q1.column_name( 2 ) == "name" );
104
109
// test end of results
105
110
assert( !q1.step() );
113
sqlite::query q3( db, "SELECT name FROM pets WHERE age = 16" );
114
assert( q3.num_results() == 2 );
107
116
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
109
// test query itterator
118
// test query iterator
110
119
sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
111
for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
112
if( i->index() == 3 )
120
sqlite::query::iterator i1 = q2.begin();
121
assert( i1 != q2.end() );
123
// test resetting iterators
124
unsigned int count = 0;
125
for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ )
127
// test iterator dereferencing and row numbers
128
assert( count++ == i->row_number() );
129
if( i->row_number() == 3 )
113
130
assert( i->column< std::string >( 0 ) == "tessa" &&
114
131
i->column< unsigned int >( 1 ) == 16 );
134
// for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
115
135
// for( unsigned int a = 0; a < q2.column_count(); a++ )
116
136
// std::cout << q2.column_name( a ) << "[" <<
117
137
// i->column< std::string >( a ) << "] ";
118
138
// std::cout << "\n";
120
assert( q2.column_count() == 2 );
121
assert( q2.column_name( 0 ) == "name" );
123
141
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
125
143
// test transactions
126
{ sqlite::transaction_guard< > t1( db ); }
127
{ sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
128
{ sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
129
sqlite::transaction_guard< sqlite::recursive_transaction > t2( db ); }
145
sqlite::transaction_guard< sqlite::deferred_tranaction > t1( db );
148
sqlite::transaction_guard< sqlite::immediate_transaction > t1( db );
151
sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db );
154
sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
155
sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
131
158
// test transaction guard rollback