/sqlite3cc

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

« back to all changes in this revision

Viewing changes to test/test-main.cc

  • Committer: edam
  • Date: 2010-03-09 14:06:50 UTC
  • Revision ID: edam@waxworlds.org-20100309140650-oqwnsrbajh8d2p2m
- moved dependancy on boost_filesystem-mt from the library to test-main

Show diffs side-by-side

added added

removed removed

34
34
                boost::filesystem::remove( DBFILE );
35
35
 
36
36
        // open database
37
 
        sqlite::connection db( DBFILE );
38
 
 
39
 
        std::cout << "SQLite threading mode: " << sqlite::threadsafe() << "\n";
 
37
        sqlite::database db( DBFILE );
40
38
 
41
39
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
42
40
 
58
56
        sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
59
57
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
60
58
 
61
 
        // test command binding via stream operator
 
59
        // test basic_statement binding via stream operator
 
60
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
 
61
        c4 << "tessa" << 16 << sqlite::exec;
62
62
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
63
 
                "tessa" << 16 << sqlite::exec;
64
 
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
65
 
        c4 << sqlite::null << sqlite::null << sqlite::set_index( 1 ) <<
66
 
                "tamara" << sqlite::exec;
67
 
        assert( c4.changes() == 1 );
68
 
 
69
 
        // test query binding via stream operator
70
 
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR age = ?" )
71
 
                << "foo" << 16;
72
 
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR name = ? OR "
73
 
                "name = ? OR name = ?" ) << "foo" << sqlite::null << sqlite::null
74
 
                << sqlite::set_index( 1 ) << "bar" << "baz";
 
63
                sqlite::null << sqlite::null <<
 
64
                sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
75
65
 
76
66
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
77
67
 
79
69
        sqlite::query q1( db, "SELECT age, age + 3, name "
80
70
                "FROM pets WHERE NOT age IS NULL "
81
71
                "ORDER BY age ASC" );
82
 
 
83
 
        // test column count and names
84
72
        assert( q1.column_count() == 3 );
85
 
        assert( q1.column_name( 2 ) == "name" );
86
73
 
87
74
        // test rows
88
75
        unsigned int age;
89
76
        std::string name;
90
77
        q1.step().column( 0, age ); assert( age == 12 );
91
 
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
 
78
        q1.step().column( 2, name ); assert( name == "mopti" );
92
79
 
93
80
        // test row stream operator
94
81
        sqlite::row r1 = q1.step();
103
90
 
104
91
        // test NULL value handling
105
92
        assert( row.column_type( 2 ) == SQLITE_NULL );
106
 
        age = row.column< unsigned int >( 2 ); assert( age == 0 );
 
93
        row.column( 2, age ); assert( age == 0 );
107
94
        row.column( 2, name ); assert( name == "" );
108
95
 
109
96
        // test end of results
110
97
        assert( !q1.step() );
111
98
 
112
 
        // test num results
113
 
        sqlite::query q3( db, "SELECT name FROM pets WHERE age = 16" );
114
 
        assert( q3.num_results() == 2 );
115
 
 
116
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
117
 
 
118
 
        // test query iterator
119
 
        sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
120
 
        sqlite::query::iterator i1 = q2.begin();
121
 
        assert( i1 != q2.end() );
122
 
 
123
 
        // test resetting iterators
124
 
        unsigned int count = 0;
125
 
        for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ )
126
 
        {
127
 
                // test iterator dereferencing and row numbers
128
 
                assert( count++ == i->row_number() );
129
 
                if( i->row_number() == 3 )
130
 
                        assert( i->column< std::string >( 0 ) == "tessa" &&
131
 
                                i->column< unsigned int >( 1 ) == 16 );
132
 
        }
133
 
 
134
 
//      for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
135
 
//              for( unsigned int a = 0; a < q2.column_count(); a++ )
136
 
//                      std::cout << q2.column_name( a ) << "[" <<
137
 
//                      i->column< std::string >( a ) << "] ";
138
 
//              std::cout << "\n";
139
 
//      }
140
 
 
141
99
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
142
100
 
143
101
        // test transactions
144
 
        {
145
 
                sqlite::transaction_guard< sqlite::deferred_tranaction > t1( db );
146
 
        }
147
 
        {
148
 
                sqlite::transaction_guard< sqlite::immediate_transaction > t1( db );
149
 
        }
150
 
        {
151
 
                sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db );
152
 
        }
153
 
        {
154
 
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
155
 
                sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
156
 
        }
 
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 ); }
157
106
 
158
107
        // test transaction guard rollback
159
108
        {
166
115
        // text recursive transactions
167
116
        {
168
117
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
169
 
                db.exec( "UPDATE pets SET age = 66" );
 
118
                db.exec( "UPDATE pets SET age = 99" );
170
119
 
171
120
                {
172
121
                        sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
174
123
                }
175
124
 
176
125
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
177
 
                        .step() >> age; assert( age == 66 );
 
126
                        .step() >> age; assert( age == 99 );
 
127
 
 
128
                t1.commit();
178
129
        }
179
130
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
180
 
                .step() >> age; assert( age == 123 );
 
131
                .step() >> age; assert( age == 99 );
181
132
 
182
133
        // ok
183
134
        return 0;