/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-23 09:17:03 UTC
  • Revision ID: edam@waxworlds.org-20100723091703-3siqjj6eeux9hupz
- added NEWS
- added library checks to configure.ac
- added query::iterators
- remove dependency that rows have on querys (since querys have to be dependent on rows for boost::iterator_facade to work)
- rows now have the handle to the sqlite3 statement and know a count of their row number
- added convenience function tht can be used to detect presence of sqlite3cc in other packages
- updated test-main
- renamed all subdir.mk files to emake.mk

Show diffs side-by-side

added added

removed removed

59
59
        // test basic_statement binding via stream operator
60
60
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
61
61
        c4 << "tessa" << 16 << sqlite::exec;
62
 
        sqlite::command c5( db, "INSERT INTO pets VALUES( ?, ? )" );
63
 
        c5 << sqlite::null << sqlite::null <<
 
62
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
 
63
                sqlite::null << sqlite::null <<
64
64
                sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
65
65
 
66
66
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
75
75
        unsigned int age;
76
76
        std::string name;
77
77
        q1.step().column( 0, age ); assert( age == 12 );
78
 
        q1.step().column( 2, name ); assert( name == "mopti" );
 
78
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
79
79
 
80
80
        // test row stream operator
81
81
        sqlite::row r1 = q1.step();
90
90
 
91
91
        // test NULL value handling
92
92
        assert( row.column_type( 2 ) == SQLITE_NULL );
93
 
        row.column( 2, age ); assert( age == 0 );
 
93
        age = row.column< unsigned int >( 2 ); assert( age == 0 );
94
94
        row.column( 2, name ); assert( name == "" );
95
95
 
96
96
        // test end of results
97
97
        assert( !q1.step() );
98
98
 
 
99
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
100
 
 
101
        // test query itterator
 
102
        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 )
 
105
                        assert( i->column< std::string >( 0 ) == "tessa" &&
 
106
                                i->column< unsigned int >( 1 ) == 16 );
 
107
//              for( unsigned int a = 0; a < q2.column_count(); a++ )
 
108
//                      std::cout << q2.column_name( a ) << "[" <<
 
109
//                      i->column< std::string >( a ) << "] ";
 
110
//              std::cout << "\n";
 
111
        }
 
112
        assert( q2.column_count() == 2 );
 
113
        assert( q2.column_name( 0 ) == "name" );
 
114
 
 
115
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
116
 
 
117
        // 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 ); }
 
122
 
 
123
        // test transaction guard rollback
 
124
        {
 
125
                sqlite::transaction_guard< > t1( db );
 
126
                db.exec( "UPDATE pets SET age = 99" );
 
127
        }
 
128
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
129
                .step() >> age; assert( age == 123 );
 
130
 
 
131
        // text recursive transactions
 
132
        {
 
133
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
 
134
                db.exec( "UPDATE pets SET age = 66" );
 
135
 
 
136
                {
 
137
                        sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
 
138
                        db.exec( "UPDATE pets SET age = 1" );
 
139
                }
 
140
 
 
141
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
142
                        .step() >> age; assert( age == 66 );
 
143
 
 
144
                //t1.commit();
 
145
        }
 
146
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
147
                .step() >> age; assert( age == 123 );
 
148
 
 
149
        // ok
99
150
        return 0;
100
151
}