/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: 2012-01-23 17:37:17 UTC
  • Revision ID: edam@waxworlds.org-20120123173717-yj4zb1nv7d39va8d
Tags: 0.1
prep for release

Show diffs side-by-side

added added

removed removed

74
74
                << sqlite::set_index( 1 ) << "bar" << "baz";
75
75
 
76
76
        // test connection command and query factory methods
77
 
        conn.make_command( "PRAGMA user_version = 12")->step();
78
 
        assert( conn.make_query( "PRAGMA user_version" )->step()
79
 
                .column< int >( 0 ) == 12 );
 
77
        *conn.make_command( "PRAGMA user_version = 1") << sqlite::exec;
 
78
        conn.make_query( "PRAGMA user_version")->step();
80
79
 
81
80
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
82
81
 
168
167
        sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
169
168
                .step() >> age; assert( age == 123 );
170
169
 
171
 
        // test recursive transactions
 
170
        // text recursive transactions
172
171
        {
173
172
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn );
174
173
                conn.exec( "UPDATE pets SET age = 66" );