/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: Tim Marston
  • Date: 2015-02-26 08:59:36 UTC
  • Revision ID: tim@ed.am-20150226085936-xe43in8bfz6f6nxb
fixed some missing/incorrect includes

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test-database.cc
 
2
 * test-main.cc
3
3
 *
4
4
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
5
5
 *
56
56
        sqlite::command c6( conn, "INSERT INTO pets VALUES( ?, ? )" );
57
57
        c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
58
58
        sqlite::command c7( conn, "INSERT INTO pets VALUES( :foo, :bar )" );
59
 
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
 
59
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22.5 ); c7.exec();
60
60
 
61
61
        // test command binding via stream operator
62
62
        sqlite::command( conn, "INSERT INTO pets VALUES( ?, ? )" ) <<
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 = 1") << sqlite::exec;
78
 
        conn.make_query( "PRAGMA user_version")->step();
 
77
        conn.make_command( "PRAGMA user_version = 12")->step();
 
78
        assert( conn.make_query( "PRAGMA user_version" )->step()
 
79
                .column< int >( 0 ) == 12 );
79
80
 
80
81
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
81
82
 
90
91
 
91
92
        // test rows
92
93
        unsigned int age;
 
94
        double dblage;
93
95
        std::string name;
94
96
        q1.step().column( 0, age ); assert( age == 12 );
95
97
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
99
101
        r1 >> age; assert( age == 16 );
100
102
        r1 >> age; assert( age == 19 );
101
103
        r1 >> name; assert( name == "tessa" );
102
 
        q1.step() >> age >> sqlite::null >> name;
103
 
        assert( age == 22 && name == "foocat" );
 
104
        q1.step() >> dblage >> sqlite::null >> name;
 
105
        assert( dblage == 22.5 && name == "foocat" );
104
106
        sqlite::row row = q1.step();
105
107
        row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
106
108
        row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
167
169
        sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
168
170
                .step() >> age; assert( age == 123 );
169
171
 
170
 
        // text recursive transactions
 
172
        // test recursive transactions
171
173
        {
172
174
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn );
173
175
                conn.exec( "UPDATE pets SET age = 66" );
183
185
        sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
184
186
                .step() >> age; assert( age == 123 );
185
187
 
 
188
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
189
 
186
190
        // ok
187
191
        return 0;
188
192
}