49
// test basic_statement bind() calls, via command
47
// test statement bind() calls, via command
50
48
sqlite::command c2( db, "INSERT INTO pets VALUES( ?, ? )" );
51
49
c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
52
sqlite::command c3( db, "INSERT INTO pets VALUES( ?6, ?9 )" );
53
c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec();
50
sqlite::command c3( db, "INSERT INTO pets VALUES( ?, ? )" );
51
c3.bind( 2, 16 ); c3.bind( 1, "mopti" ); c3.exec();
54
52
sqlite::command c6( db, "INSERT INTO pets VALUES( ?, ? )" );
55
53
c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
56
sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
57
c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
59
// test basic_statement binding via stream operator
55
// test binding via stream operator
60
56
sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
61
57
c4 << "tessa" << 16 << sqlite::exec;
62
sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
63
sqlite::null << sqlite::null <<
58
sqlite::command c5( db, "INSERT INTO pets VALUES( ?, ? )" );
59
c5 << sqlite::null << sqlite::null <<
64
60
sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
66
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
69
sqlite::query q1( db, "SELECT age, age + 3, name "
70
"FROM pets WHERE NOT age IS NULL "
72
assert( q1.column_count() == 3 );
77
q1.step().column( 0, age ); assert( age == 12 );
78
q1.step().column( 2, name ); assert( name == "mopti" );
80
// test row stream operator
81
sqlite::row r1 = q1.step();
82
r1 >> age; assert( age == 16 );
83
r1 >> age; assert( age == 19 );
84
r1 >> name; assert( name == "tessa" );
85
q1.step() >> age >> sqlite::null >> name;
86
assert( age == 22 && name == "foocat" );
87
sqlite::row row = q1.step();
88
row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
89
row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
91
// test NULL value handling
92
assert( row.column_type( 2 ) == SQLITE_NULL );
93
row.column( 2, age ); assert( age == 0 );
94
row.column( 2, name ); assert( name == "" );
96
// test end of results
99
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
102
{ sqlite::transaction_guard< > t1( db ); }
103
{ sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
104
{ sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
105
sqlite::transaction_guard< sqlite::recursive_transaction > t2( db ); }
107
// test transaction guard rollback
109
sqlite::transaction_guard< > t1( db );
110
db.exec( "UPDATE pets SET age = 99" );
112
sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
113
.step() >> age; assert( age == 123 );
115
// text recursive transactions
117
sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
118
db.exec( "UPDATE pets SET age = 99" );
121
sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
122
db.exec( "UPDATE pets SET age = 1" );
125
sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
126
.step() >> age; assert( age == 99 );
130
sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
131
.step() >> age; assert( age == 99 );