4
4
* Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
6
* This file is part of sqlitepp (hereafter referred to as "this program").
7
* See http://www.waxworlds.org/edam/software/sqlitepp for more information.
6
* This file is part of sqlite3cc (hereafter referred to as "this program").
7
* See http://www.waxworlds.org/edam/software/sqlite3cc for more information.
9
9
* This program is free software: you can redistribute it and/or modify
10
10
* it under the terms of the GNU Lesser General Public License as published
47
// test statement bind() calls, via command
49
// test basic_statement bind() calls, via command
48
50
sqlite::command c2( db, "INSERT INTO pets VALUES( ?, ? )" );
49
51
c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
50
sqlite::command c3( db, "INSERT INTO pets VALUES( ?, ? )" );
51
c3.bind( 2, 16 ); c3.bind( 1, "mopti" ); c3.exec();
52
sqlite::command c3( db, "INSERT INTO pets VALUES( ?6, ?9 )" );
53
c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec();
52
54
sqlite::command c6( db, "INSERT INTO pets VALUES( ?, ? )" );
53
55
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();
55
// test binding via stream operator
59
// test basic_statement binding via stream operator
56
60
sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
57
61
c4 << "tessa" << 16 << sqlite::exec;
58
62
sqlite::command c5( db, "INSERT INTO pets VALUES( ?, ? )" );
59
63
c5 << sqlite::null << sqlite::null <<
60
64
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