/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

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
98
98
 
99
99
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
100
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
 
101
117
        // test transactions
102
118
        {       sqlite::transaction_guard< > t1( db ); }
103
119
        {       sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
115
131
        // text recursive transactions
116
132
        {
117
133
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
118
 
                db.exec( "UPDATE pets SET age = 99" );
 
134
                db.exec( "UPDATE pets SET age = 66" );
119
135
 
120
136
                {
121
137
                        sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
123
139
                }
124
140
 
125
141
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
126
 
                        .step() >> age; assert( age == 99 );
 
142
                        .step() >> age; assert( age == 66 );
127
143
 
128
 
                t1.commit();
 
144
                //t1.commit();
129
145
        }
130
146
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
131
 
                .step() >> age; assert( age == 99 );
 
147
                .step() >> age; assert( age == 123 );
132
148
 
133
149
        // ok
134
150
        return 0;