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 )" );
61
61
// test command binding via stream operator
62
62
sqlite::command( conn, "INSERT INTO pets VALUES( ?, ? )" ) <<