├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.git ├── README.md ├── configure.ac ├── demo ├── Makefile.am ├── README-serialization ├── csvoutput.cpp ├── demodb.sql ├── deserialize.cpp ├── modify.cpp ├── multiparam.cpp ├── select.cpp ├── serial.cpp ├── serialize.cpp ├── sqlcmd.cpp └── util.h ├── doc ├── Doxyfile.in ├── Makefile.am ├── main.page ├── tntdb.doxygen.in └── tntdb.markdown ├── include ├── Makefile.am ├── tntdb.h └── tntdb │ ├── bits │ ├── blob.h │ ├── blobstream.h │ ├── connection.h │ ├── result.h │ ├── result_iterator.h │ ├── row.h │ ├── row_iterator.h │ ├── rowreader.h │ ├── statement.h │ ├── statement_iterator.h │ └── value.h │ ├── blob.h │ ├── connect.h │ ├── connection.h │ ├── connectionpool.h │ ├── cxxtools │ ├── bin.h │ ├── date.h │ ├── datetime.h │ ├── json.h │ ├── time.h │ └── timespan.h │ ├── date.h │ ├── datetime.h │ ├── decimal.h │ ├── error.h │ ├── iface │ ├── iblob.h │ ├── iconnection.h │ ├── iconnectionmanager.h │ ├── icursor.h │ ├── iresult.h │ ├── irow.h │ ├── istatement.h │ └── ivalue.h │ ├── impl │ ├── blob.h │ ├── poolconnection.h │ ├── result.h │ ├── row.h │ └── value.h │ ├── librarymanager.h │ ├── mysql │ ├── bindutils.h │ ├── bindvalues.h │ ├── cursor.h │ ├── error.h │ └── impl │ │ ├── boundrow.h │ │ ├── boundvalue.h │ │ ├── connection.h │ │ ├── connectionmanager.h │ │ ├── cursor.h │ │ ├── result.h │ │ ├── resultrow.h │ │ ├── rowcontainer.h │ │ ├── rowvalue.h │ │ └── statement.h │ ├── oracle │ ├── blob.h │ ├── connection.h │ ├── connectionmanager.h │ ├── cursor.h │ ├── datetime.h │ ├── error.h │ ├── multirow.h │ ├── multivalue.h │ ├── number.h │ ├── result.h │ ├── row.h │ ├── singlerow.h │ ├── singlevalue.h │ ├── statement.h │ ├── string.h │ └── value.h │ ├── postgresql │ ├── error.h │ └── impl │ │ ├── connection.h │ │ ├── connectionmanager.h │ │ ├── cursor.h │ │ ├── result.h │ │ ├── resultrow.h │ │ ├── resultvalue.h │ │ └── statement.h │ ├── pscconnection.h │ ├── replicate │ ├── connection.h │ ├── connectionmanager.h │ └── statement.h │ ├── result.h │ ├── row.h │ ├── serialization.h │ ├── sqlbuilder.h │ ├── sqlite │ ├── error.h │ └── impl │ │ ├── connection.h │ │ ├── connectionmanager.h │ │ ├── cursor.h │ │ ├── statement.h │ │ ├── stmtrow.h │ │ └── stmtvalue.h │ ├── statement.h │ ├── stmtparser.h │ ├── time.h │ ├── transaction.h │ └── value.h ├── m4 └── ax_cxx_compile_stdcxx_11.m4 ├── pkgconfig └── tntdb.pc.in ├── src ├── Makefile.am ├── blob.cpp ├── blobstream.cpp ├── connect.cpp ├── connection.cpp ├── connectionpool.cpp ├── date.cpp ├── datetime.cpp ├── decimal.cpp ├── error.cpp ├── librarymanager.cpp ├── mysql │ ├── Makefile.am │ ├── bindutils.cpp │ ├── bindvalues.cpp │ ├── boundrow.cpp │ ├── boundvalue.cpp │ ├── connection.cpp │ ├── connectionmanager.cpp │ ├── cursor.cpp │ ├── cursor_iterator.cpp │ ├── error.cpp │ ├── result.cpp │ ├── resultrow.cpp │ ├── row.cpp │ ├── rowcontainer.cpp │ ├── rowvalue.cpp │ └── statement.cpp ├── oracle │ ├── Makefile.am │ ├── blob.cpp │ ├── connection.cpp │ ├── connectionmanager.cpp │ ├── cursor.cpp │ ├── datetime.cpp │ ├── error.cpp │ ├── multirow.cpp │ ├── multivalue.cpp │ ├── number.cpp │ ├── result.cpp │ ├── row.cpp │ ├── singlerow.cpp │ ├── singlevalue.cpp │ ├── statement.cpp │ ├── string.cpp │ └── value.cpp ├── poolconnection.cpp ├── postgresql │ ├── Makefile.am │ ├── connection.cpp │ ├── connectionmanager.cpp │ ├── cursor.cpp │ ├── error.cpp │ ├── result.cpp │ ├── resultrow.cpp │ ├── resultvalue.cpp │ └── statement.cpp ├── pscconnection.cpp ├── replicate │ ├── Makefile.am │ ├── connection.cpp │ ├── connectionmanager.cpp │ └── statement.cpp ├── result.cpp ├── resultimpl.cpp ├── row.cpp ├── rowimpl.cpp ├── serialization.cpp ├── sqlbuilder.cpp ├── sqlite │ ├── Makefile.am │ ├── connection.cpp │ ├── connectionmanager.cpp │ ├── cursor.cpp │ ├── error.cpp │ ├── nvstatement.cpp │ ├── statement.cpp │ ├── stmtrow.cpp │ └── stmtvalue.cpp ├── statement.cpp ├── statement_iterator.cpp ├── stmtparser.cpp ├── time.cpp ├── transaction.cpp └── valueimpl.cpp └── test ├── Makefile.am ├── base-test.cpp ├── bin-test.cpp ├── colname-test.cpp ├── decimal-test.cpp ├── json-test.cpp ├── mysql-test.sql ├── mysql_seq_test.sql ├── oracle-test.sql ├── oracle_seq_test.sql ├── pg-test.sql ├── pg_seq_test.sql ├── sqlbuilder-test.cpp ├── sqlite-test.sql ├── sqlite_seq_test.sql ├── statement-test.cpp ├── test-main.cpp ├── test.cpp ├── testbase.cpp ├── testbase.h ├── timespan-test.cpp ├── tntdb-locktest.cpp ├── types-test.cpp └── value-test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | see README.md 2 | -------------------------------------------------------------------------------- /README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/README.git -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/configure.ac -------------------------------------------------------------------------------- /demo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/Makefile.am -------------------------------------------------------------------------------- /demo/README-serialization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/README-serialization -------------------------------------------------------------------------------- /demo/csvoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/csvoutput.cpp -------------------------------------------------------------------------------- /demo/demodb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/demodb.sql -------------------------------------------------------------------------------- /demo/deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/deserialize.cpp -------------------------------------------------------------------------------- /demo/modify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/modify.cpp -------------------------------------------------------------------------------- /demo/multiparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/multiparam.cpp -------------------------------------------------------------------------------- /demo/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/select.cpp -------------------------------------------------------------------------------- /demo/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/serial.cpp -------------------------------------------------------------------------------- /demo/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/serialize.cpp -------------------------------------------------------------------------------- /demo/sqlcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/sqlcmd.cpp -------------------------------------------------------------------------------- /demo/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/demo/util.h -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/main.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/doc/main.page -------------------------------------------------------------------------------- /doc/tntdb.doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/doc/tntdb.doxygen.in -------------------------------------------------------------------------------- /doc/tntdb.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/doc/tntdb.markdown -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/tntdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb.h -------------------------------------------------------------------------------- /include/tntdb/bits/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/blob.h -------------------------------------------------------------------------------- /include/tntdb/bits/blobstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/blobstream.h -------------------------------------------------------------------------------- /include/tntdb/bits/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/connection.h -------------------------------------------------------------------------------- /include/tntdb/bits/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/result.h -------------------------------------------------------------------------------- /include/tntdb/bits/result_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/result_iterator.h -------------------------------------------------------------------------------- /include/tntdb/bits/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/row.h -------------------------------------------------------------------------------- /include/tntdb/bits/row_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/row_iterator.h -------------------------------------------------------------------------------- /include/tntdb/bits/rowreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/rowreader.h -------------------------------------------------------------------------------- /include/tntdb/bits/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/statement.h -------------------------------------------------------------------------------- /include/tntdb/bits/statement_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/statement_iterator.h -------------------------------------------------------------------------------- /include/tntdb/bits/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/bits/value.h -------------------------------------------------------------------------------- /include/tntdb/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/blob.h -------------------------------------------------------------------------------- /include/tntdb/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/connect.h -------------------------------------------------------------------------------- /include/tntdb/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/connection.h -------------------------------------------------------------------------------- /include/tntdb/connectionpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/connectionpool.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/bin.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/date.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/datetime.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/json.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/time.h -------------------------------------------------------------------------------- /include/tntdb/cxxtools/timespan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/cxxtools/timespan.h -------------------------------------------------------------------------------- /include/tntdb/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/date.h -------------------------------------------------------------------------------- /include/tntdb/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/datetime.h -------------------------------------------------------------------------------- /include/tntdb/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/decimal.h -------------------------------------------------------------------------------- /include/tntdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/error.h -------------------------------------------------------------------------------- /include/tntdb/iface/iblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/iblob.h -------------------------------------------------------------------------------- /include/tntdb/iface/iconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/iconnection.h -------------------------------------------------------------------------------- /include/tntdb/iface/iconnectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/iconnectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/iface/icursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/icursor.h -------------------------------------------------------------------------------- /include/tntdb/iface/iresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/iresult.h -------------------------------------------------------------------------------- /include/tntdb/iface/irow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/irow.h -------------------------------------------------------------------------------- /include/tntdb/iface/istatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/istatement.h -------------------------------------------------------------------------------- /include/tntdb/iface/ivalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/iface/ivalue.h -------------------------------------------------------------------------------- /include/tntdb/impl/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/impl/blob.h -------------------------------------------------------------------------------- /include/tntdb/impl/poolconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/impl/poolconnection.h -------------------------------------------------------------------------------- /include/tntdb/impl/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/impl/result.h -------------------------------------------------------------------------------- /include/tntdb/impl/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/impl/row.h -------------------------------------------------------------------------------- /include/tntdb/impl/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/impl/value.h -------------------------------------------------------------------------------- /include/tntdb/librarymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/librarymanager.h -------------------------------------------------------------------------------- /include/tntdb/mysql/bindutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/bindutils.h -------------------------------------------------------------------------------- /include/tntdb/mysql/bindvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/bindvalues.h -------------------------------------------------------------------------------- /include/tntdb/mysql/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/cursor.h -------------------------------------------------------------------------------- /include/tntdb/mysql/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/error.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/boundrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/boundrow.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/boundvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/boundvalue.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/connection.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/connectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/cursor.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/result.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/resultrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/resultrow.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/rowcontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/rowcontainer.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/rowvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/rowvalue.h -------------------------------------------------------------------------------- /include/tntdb/mysql/impl/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/mysql/impl/statement.h -------------------------------------------------------------------------------- /include/tntdb/oracle/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/blob.h -------------------------------------------------------------------------------- /include/tntdb/oracle/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/connection.h -------------------------------------------------------------------------------- /include/tntdb/oracle/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/connectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/oracle/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/cursor.h -------------------------------------------------------------------------------- /include/tntdb/oracle/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/datetime.h -------------------------------------------------------------------------------- /include/tntdb/oracle/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/error.h -------------------------------------------------------------------------------- /include/tntdb/oracle/multirow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/multirow.h -------------------------------------------------------------------------------- /include/tntdb/oracle/multivalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/multivalue.h -------------------------------------------------------------------------------- /include/tntdb/oracle/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/number.h -------------------------------------------------------------------------------- /include/tntdb/oracle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/result.h -------------------------------------------------------------------------------- /include/tntdb/oracle/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/row.h -------------------------------------------------------------------------------- /include/tntdb/oracle/singlerow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/singlerow.h -------------------------------------------------------------------------------- /include/tntdb/oracle/singlevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/singlevalue.h -------------------------------------------------------------------------------- /include/tntdb/oracle/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/statement.h -------------------------------------------------------------------------------- /include/tntdb/oracle/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/string.h -------------------------------------------------------------------------------- /include/tntdb/oracle/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/oracle/value.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/error.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/connection.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/connectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/cursor.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/result.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/resultrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/resultrow.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/resultvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/resultvalue.h -------------------------------------------------------------------------------- /include/tntdb/postgresql/impl/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/postgresql/impl/statement.h -------------------------------------------------------------------------------- /include/tntdb/pscconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/pscconnection.h -------------------------------------------------------------------------------- /include/tntdb/replicate/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/replicate/connection.h -------------------------------------------------------------------------------- /include/tntdb/replicate/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/replicate/connectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/replicate/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/replicate/statement.h -------------------------------------------------------------------------------- /include/tntdb/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/result.h -------------------------------------------------------------------------------- /include/tntdb/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/row.h -------------------------------------------------------------------------------- /include/tntdb/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/serialization.h -------------------------------------------------------------------------------- /include/tntdb/sqlbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlbuilder.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/error.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/connection.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/connectionmanager.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/cursor.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/statement.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/stmtrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/stmtrow.h -------------------------------------------------------------------------------- /include/tntdb/sqlite/impl/stmtvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/sqlite/impl/stmtvalue.h -------------------------------------------------------------------------------- /include/tntdb/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/statement.h -------------------------------------------------------------------------------- /include/tntdb/stmtparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/stmtparser.h -------------------------------------------------------------------------------- /include/tntdb/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/time.h -------------------------------------------------------------------------------- /include/tntdb/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/transaction.h -------------------------------------------------------------------------------- /include/tntdb/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/include/tntdb/value.h -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /pkgconfig/tntdb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/pkgconfig/tntdb.pc.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/blob.cpp -------------------------------------------------------------------------------- /src/blobstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/blobstream.cpp -------------------------------------------------------------------------------- /src/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/connect.cpp -------------------------------------------------------------------------------- /src/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/connection.cpp -------------------------------------------------------------------------------- /src/connectionpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/connectionpool.cpp -------------------------------------------------------------------------------- /src/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/date.cpp -------------------------------------------------------------------------------- /src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/datetime.cpp -------------------------------------------------------------------------------- /src/decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/decimal.cpp -------------------------------------------------------------------------------- /src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/error.cpp -------------------------------------------------------------------------------- /src/librarymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/librarymanager.cpp -------------------------------------------------------------------------------- /src/mysql/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/Makefile.am -------------------------------------------------------------------------------- /src/mysql/bindutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/bindutils.cpp -------------------------------------------------------------------------------- /src/mysql/bindvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/bindvalues.cpp -------------------------------------------------------------------------------- /src/mysql/boundrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/boundrow.cpp -------------------------------------------------------------------------------- /src/mysql/boundvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/boundvalue.cpp -------------------------------------------------------------------------------- /src/mysql/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/connection.cpp -------------------------------------------------------------------------------- /src/mysql/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/connectionmanager.cpp -------------------------------------------------------------------------------- /src/mysql/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/cursor.cpp -------------------------------------------------------------------------------- /src/mysql/cursor_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/cursor_iterator.cpp -------------------------------------------------------------------------------- /src/mysql/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/error.cpp -------------------------------------------------------------------------------- /src/mysql/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/result.cpp -------------------------------------------------------------------------------- /src/mysql/resultrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/resultrow.cpp -------------------------------------------------------------------------------- /src/mysql/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/row.cpp -------------------------------------------------------------------------------- /src/mysql/rowcontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/rowcontainer.cpp -------------------------------------------------------------------------------- /src/mysql/rowvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/rowvalue.cpp -------------------------------------------------------------------------------- /src/mysql/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/mysql/statement.cpp -------------------------------------------------------------------------------- /src/oracle/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/Makefile.am -------------------------------------------------------------------------------- /src/oracle/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/blob.cpp -------------------------------------------------------------------------------- /src/oracle/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/connection.cpp -------------------------------------------------------------------------------- /src/oracle/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/connectionmanager.cpp -------------------------------------------------------------------------------- /src/oracle/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/cursor.cpp -------------------------------------------------------------------------------- /src/oracle/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/datetime.cpp -------------------------------------------------------------------------------- /src/oracle/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/error.cpp -------------------------------------------------------------------------------- /src/oracle/multirow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/multirow.cpp -------------------------------------------------------------------------------- /src/oracle/multivalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/multivalue.cpp -------------------------------------------------------------------------------- /src/oracle/number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/number.cpp -------------------------------------------------------------------------------- /src/oracle/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/result.cpp -------------------------------------------------------------------------------- /src/oracle/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/row.cpp -------------------------------------------------------------------------------- /src/oracle/singlerow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/singlerow.cpp -------------------------------------------------------------------------------- /src/oracle/singlevalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/singlevalue.cpp -------------------------------------------------------------------------------- /src/oracle/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/statement.cpp -------------------------------------------------------------------------------- /src/oracle/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/string.cpp -------------------------------------------------------------------------------- /src/oracle/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/oracle/value.cpp -------------------------------------------------------------------------------- /src/poolconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/poolconnection.cpp -------------------------------------------------------------------------------- /src/postgresql/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/Makefile.am -------------------------------------------------------------------------------- /src/postgresql/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/connection.cpp -------------------------------------------------------------------------------- /src/postgresql/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/connectionmanager.cpp -------------------------------------------------------------------------------- /src/postgresql/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/cursor.cpp -------------------------------------------------------------------------------- /src/postgresql/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/error.cpp -------------------------------------------------------------------------------- /src/postgresql/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/result.cpp -------------------------------------------------------------------------------- /src/postgresql/resultrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/resultrow.cpp -------------------------------------------------------------------------------- /src/postgresql/resultvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/resultvalue.cpp -------------------------------------------------------------------------------- /src/postgresql/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/postgresql/statement.cpp -------------------------------------------------------------------------------- /src/pscconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/pscconnection.cpp -------------------------------------------------------------------------------- /src/replicate/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/replicate/Makefile.am -------------------------------------------------------------------------------- /src/replicate/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/replicate/connection.cpp -------------------------------------------------------------------------------- /src/replicate/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/replicate/connectionmanager.cpp -------------------------------------------------------------------------------- /src/replicate/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/replicate/statement.cpp -------------------------------------------------------------------------------- /src/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/result.cpp -------------------------------------------------------------------------------- /src/resultimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/resultimpl.cpp -------------------------------------------------------------------------------- /src/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/row.cpp -------------------------------------------------------------------------------- /src/rowimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/rowimpl.cpp -------------------------------------------------------------------------------- /src/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/serialization.cpp -------------------------------------------------------------------------------- /src/sqlbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlbuilder.cpp -------------------------------------------------------------------------------- /src/sqlite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/Makefile.am -------------------------------------------------------------------------------- /src/sqlite/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/connection.cpp -------------------------------------------------------------------------------- /src/sqlite/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/connectionmanager.cpp -------------------------------------------------------------------------------- /src/sqlite/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/cursor.cpp -------------------------------------------------------------------------------- /src/sqlite/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/error.cpp -------------------------------------------------------------------------------- /src/sqlite/nvstatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/nvstatement.cpp -------------------------------------------------------------------------------- /src/sqlite/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/statement.cpp -------------------------------------------------------------------------------- /src/sqlite/stmtrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/stmtrow.cpp -------------------------------------------------------------------------------- /src/sqlite/stmtvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/sqlite/stmtvalue.cpp -------------------------------------------------------------------------------- /src/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/statement.cpp -------------------------------------------------------------------------------- /src/statement_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/statement_iterator.cpp -------------------------------------------------------------------------------- /src/stmtparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/stmtparser.cpp -------------------------------------------------------------------------------- /src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/time.cpp -------------------------------------------------------------------------------- /src/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/transaction.cpp -------------------------------------------------------------------------------- /src/valueimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/src/valueimpl.cpp -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/base-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/base-test.cpp -------------------------------------------------------------------------------- /test/bin-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/bin-test.cpp -------------------------------------------------------------------------------- /test/colname-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/colname-test.cpp -------------------------------------------------------------------------------- /test/decimal-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/decimal-test.cpp -------------------------------------------------------------------------------- /test/json-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/json-test.cpp -------------------------------------------------------------------------------- /test/mysql-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/mysql-test.sql -------------------------------------------------------------------------------- /test/mysql_seq_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/mysql_seq_test.sql -------------------------------------------------------------------------------- /test/oracle-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/oracle-test.sql -------------------------------------------------------------------------------- /test/oracle_seq_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/oracle_seq_test.sql -------------------------------------------------------------------------------- /test/pg-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/pg-test.sql -------------------------------------------------------------------------------- /test/pg_seq_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/pg_seq_test.sql -------------------------------------------------------------------------------- /test/sqlbuilder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/sqlbuilder-test.cpp -------------------------------------------------------------------------------- /test/sqlite-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/sqlite-test.sql -------------------------------------------------------------------------------- /test/sqlite_seq_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/sqlite_seq_test.sql -------------------------------------------------------------------------------- /test/statement-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/statement-test.cpp -------------------------------------------------------------------------------- /test/test-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/test-main.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/testbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/testbase.cpp -------------------------------------------------------------------------------- /test/testbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/testbase.h -------------------------------------------------------------------------------- /test/timespan-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/timespan-test.cpp -------------------------------------------------------------------------------- /test/tntdb-locktest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/tntdb-locktest.cpp -------------------------------------------------------------------------------- /test/types-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/types-test.cpp -------------------------------------------------------------------------------- /test/value-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/tntdb/HEAD/test/value-test.cpp --------------------------------------------------------------------------------