/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-07-29 20:56:19 UTC
  • Revision ID: edam@waxworlds.org-20100729205619-a9yo4uzu647nvnsj
- renamed database to connection to better identify what it is (would database_connection be better though?)
- moved basic_statement and basic_transaction to sqlite::detail
- made sqlite::threadsafe() return the threading mode int, not a bool
- renamed row::index() to row_number() so it isn't confused with column index
- added typedef for deferred_transaction
- added early rollback method to transaction_guard
- allowed transaction_guard::~transaction_guard() to throw exceptions, since when it needs to, we're really screwed anyway
- bugfix: query::reset() didn't reset the internal row counter
- added query::num_results()
- added docs/design-notes
- reimplemented query::iterator so that increment() (which performs a step() on the query) now caches the returned row to be returned during dereference() (previously it stashed details and returned new row!?)
- bugfix: resetting active queries during rollbacks would hang!

Show diffs side-by-side

added added

removed removed

34
34
                boost::filesystem::remove( DBFILE );
35
35
 
36
36
        // open database
37
 
        sqlite::database db( DBFILE );
 
37
        sqlite::connection db( DBFILE );
 
38
 
 
39
        std::cout << "SQLite threading mode: " << sqlite::threadsafe() << "\n";
38
40
 
39
41
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
40
42
 
56
58
        sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
57
59
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
58
60
 
59
 
        // test basic_statement binding via stream operator
 
61
        // test command binding via stream operator
 
62
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
 
63
                "tessa" << 16 << sqlite::exec;
60
64
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
61
 
        c4 << "tessa" << 16 << sqlite::exec;
62
 
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
63
 
                sqlite::null << sqlite::null <<
64
 
                sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
 
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";
65
75
 
66
76
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
67
77
 
69
79
        sqlite::query q1( db, "SELECT age, age + 3, name "
70
80
                "FROM pets WHERE NOT age IS NULL "
71
81
                "ORDER BY age ASC" );
 
82
 
 
83
        // test column count and names
72
84
        assert( q1.column_count() == 3 );
 
85
        assert( q1.column_name( 2 ) == "name" );
73
86
 
74
87
        // test rows
75
88
        unsigned int age;
96
109
        // test end of results
97
110
        assert( !q1.step() );
98
111
 
 
112
        // test num results
 
113
        sqlite::query q3( db, "SELECT name FROM pets WHERE age = 16" );
 
114
        assert( q3.num_results() == 2 );
 
115
 
99
116
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
100
117
 
101
 
        // test query itterator
 
118
        // test query iterator
102
119
        sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
103
 
        for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
104
 
                if( i->index() == 3 )
 
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 )
105
130
                        assert( i->column< std::string >( 0 ) == "tessa" &&
106
131
                                i->column< unsigned int >( 1 ) == 16 );
 
132
        }
 
133
 
 
134
//      for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
107
135
//              for( unsigned int a = 0; a < q2.column_count(); a++ )
108
136
//                      std::cout << q2.column_name( a ) << "[" <<
109
137
//                      i->column< std::string >( a ) << "] ";
110
138
//              std::cout << "\n";
111
 
        }
112
 
        assert( q2.column_count() == 2 );
113
 
        assert( q2.column_name( 0 ) == "name" );
 
139
//      }
114
140
 
115
141
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
116
142
 
117
143
        // test transactions
118
 
        {       sqlite::transaction_guard< > t1( db ); }
119
 
        {       sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
120
 
        {       sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
121
 
                sqlite::transaction_guard< sqlite::recursive_transaction > t2( db ); }
 
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
        }
122
157
 
123
158
        // test transaction guard rollback
124
159
        {
140
175
 
141
176
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
142
177
                        .step() >> age; assert( age == 66 );
143
 
 
144
 
                //t1.commit();
145
178
        }
146
179
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
147
180
                .step() >> age; assert( age == 123 );