aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
Commit message (Collapse)AuthorAge
* Added database server example code (untested). Fixed serveral bugs includingdrh2006-01-09
| | | | | the autovacuum compile problem described by ticket #1593. (CVS 2897) FossilOrigin-Name: ec332d8822d1ac9673581a26ab2a2fce5f2554a3
* Reinstate the asynchronous I/O demonstration code and tests with minordrh2006-01-09
| | | | | changes. (CVS 2896) FossilOrigin-Name: eeebc640aaeeb0ab7f730d854069f159aa41968b
* Change the OS interface layer to use traditional direct function calldrh2006-01-06
| | | | | | implementations instead of the more complicated virtual function table. Omit the asynchronous I/O demo. (CVS 2870) FossilOrigin-Name: 2529c2e11fa1d345ec61f647e4f6fae20a7133d6
* Enable async testing. Modify the OS layer interface. Add the sqlite3_aux.h ↵drh2006-01-06
| | | | | include file. Add tests for boolean value representation in file format 4. (CVS 2866) FossilOrigin-Name: b8332aa8b83142898779972b3dff13cbe3c78623
* Move TCL interface for sqlite3_release_memory() and sqlite3_soft_heap_limit()drh2006-01-05
| | | | | | out of tclsqlite.c and into test1.c. Update the TCL interface documention to describe the "exists" method. (CVS 2862) FossilOrigin-Name: 98194a45cc60cb9942847f773bc797fb5463bd10
* Bug fix in the new "exists" method of the TCL interface. (CVS 2857)drh2006-01-04
| | | FossilOrigin-Name: d0e3d466094f7b2f74ed7ebb324e5024ea8faa6f
* The sqlite TCL command no longer returns the hex address of the sqlite3*drh2006-01-03
| | | | | | structure. Instead there is a new command in testfixture to find that information. (CVS 2852) FossilOrigin-Name: 70b228575e045bc56013aab945334203ceb31d8b
* Add part of the btree layer of the shared-cache feature. (CVS 2848)danielk19772005-12-30
| | | FossilOrigin-Name: 2afcad990190af97d1ad0010f211a5ca8f0fd745
* Add some very simple test cases (and resulting bug fixes) for ↵danielk19772005-12-19
| | | | | release_memory(). (CVS 2826) FossilOrigin-Name: 154282fca54bf03d310d6931660f99805bb5477f
* Add the sqlite3_rollback_hook() API. Still requires further testing. (CVS 2823)danielk19772005-12-16
| | | FossilOrigin-Name: 3baa3ff32435b64e7ae7646b17a98fef9296aaa0
* Add the sqlite3_update_hook() API. (CVS 2820)danielk19772005-12-15
| | | FossilOrigin-Name: 36229018817eebfbfca7a66d2285e4faf7b39845
* Add the sqlite3_os_routine_set()/get() functions. (CVS 2818)danielk19772005-12-15
| | | FossilOrigin-Name: c1ed79f594fb85009c2e9e5e281cbe66a9d2fa17
* Fix minor malloc() related problems and add sqlite3_soft_heap_limit() stubs. ↵danielk19772005-12-12
| | | | | (CVS 2814) FossilOrigin-Name: 1637f3796015d1582ed8c6bc8bdf8c067b4bade9
* Add the "exists" method to the TCL interface. (CVS 2813)drh2005-12-10
| | | FossilOrigin-Name: 8a355d7aade5c7a95ab08aeedf1ee1857c121c33
* Add some tests for malloc() failure within the column_name() and ↵danielk19772005-12-07
| | | | | column_decl() APIs. (CVS 2805) FossilOrigin-Name: 78f10ca0a6a02e9e8e6811489841a19e213f3afb
* Modify the OS layer so that I/O routines are called through a virtual functiondrh2005-11-26
| | | | | | table. The os_test.c module has been replaced by test6.c. The crash tests are busted now and need to be fixed. (CVS 2785) FossilOrigin-Name: 1f69aec285dd8e26bd739d5e44bb50fe03a9682a
* Changes to support TEA on cygwin. (CVS 2742)drh2005-10-05
| | | FossilOrigin-Name: e80fecc986f1fe93e127398b081054766c5383cf
* Increase resolution of time-of-day on unix. Add an experimentaldrh2005-08-29
| | | | | sqlite3_profile() API. (CVS 2639) FossilOrigin-Name: ed2ca0873fa89d6cfd123541d5d1c6b92c72b6ab
* Null-terminate the strings array passed to Tcl_GetIndexFromObj. Bugdrh2005-08-16
| | | | | reported on the mailing list. (CVS 2596) FossilOrigin-Name: 3a7918a66bf98368c2520f94e505a21a1df3383c
* Tests and bug fixes on the new transaction method in the TCL interface. (CVS ↵drh2005-08-02
| | | | | 2574) FossilOrigin-Name: 68dd0ed5e312ecd5e98ee0fa1c21b70ff330f711
* Add the "transaction" coommand to the TCL interface. Untested. (CVS 2572)drh2005-08-02
| | | FossilOrigin-Name: a5ce6c58c3bfc0e1c9953fe4ad4991ac56a4fb87
* Full-coverage testing and documentation for the ANALYZE command. Thedrh2005-07-23
| | | | | results of analysis are still not loaded or used, however. (CVS 2561) FossilOrigin-Name: bd7583a5d63412785a9c5de54d25b509da241605
* Tcl interface uses Tcl_Objs to implement user-defined functions, thus allowingdrh2005-06-26
| | | | | BLOB values to be transferred correctly. Ticket #1304. (CVS 2530) FossilOrigin-Name: 514aaab3f99637ebb8b6e352f4e29738102579b4
* The TCL interface binds variables as BLOB only if they have a bytearray drh2005-06-25
| | | | | representation but no text representation. Ticket #1287. (CVS 2528) FossilOrigin-Name: 8c99dca60aebee0ec5de9ed11350de864bc76584
* Fix memory leaks in Tcl user function interface. (CVS 2464)danielk19772005-05-20
| | | FossilOrigin-Name: f5d9a8061a6d650f207669b121243abb8dd28be2
* In the TCL interface, user-defined functions preserve the datatype returneddrh2005-05-05
| | | | | by the Tcl procedure. (CVS 2453) FossilOrigin-Name: 99dcba1fb1fdaa2b8bc85046b00c14f6af596e8f
* Add hooks for the SSE extension. (CVS 2449)drh2005-04-28
| | | FossilOrigin-Name: 90f4cf2ad57309dbd20954fc7fd60859bc44bcf4
* Enhancements to allow for extensions. (CVS 2448)drh2005-04-28
| | | FossilOrigin-Name: 6863703abcb2bf31d65792d4de9ae20aba2eadb5
* Apply Tcl 'nullvalue' patch from Stefan Finzel. (CVS 2441)danielk19772005-04-03
| | | FossilOrigin-Name: 9906ae37b9be684b615a1190cf8798513baa799a
* Fix a memory leak in the TCL bindings. (CVS 2435)drh2005-03-31
| | | FossilOrigin-Name: c31ea6332f53d361be864554b83662d3fc0d52f7
* Fix an assertion fault that can occur while autovacuuming a corrupt databasedrh2005-02-26
| | | | | file. Add the SQLITE_OMIT_COMPLETE compile-time parameter. (CVS 2361) FossilOrigin-Name: bb0e7e3857a06347b08d93553ac603e737322262
* Prevent collation sequences and user functions from being deleted or changed ↵danielk19772005-01-25
| | | | | while SQL statements are executing. (CVS 2275) FossilOrigin-Name: cabab62bc10568d435806a7059fad7274f0dd4c8
* Modifications and bugfixes so that the test suite passes with the TCL ↵danielk19772005-01-24
| | | | | statement cache turned on. (CVS 2271) FossilOrigin-Name: d5233e0747789dea04d35a8350b408321d23a64d
* Change the TCL interface so that it can cache VMs and reuse them withoutdrh2005-01-24
| | | | | recompiling. But for now leave the cache turned off by default. (CVS 2269) FossilOrigin-Name: 8db6bfef52c1f35afdb8b60cba34f6807a5917f4
* Need SQLITE_MEMDEBUG instead of SQLITE_DEBUG in tclsqlite.c. (CVS 2209)drh2005-01-13
| | | FossilOrigin-Name: 6e905270a933fd4c99f6db6707ed79166f6484ee
* Tests to improve coverage of main.c. (CVS 2202)danielk19772005-01-12
| | | FossilOrigin-Name: 4e28c82adabb58ad9f79ed829734a2ff569a7c05
* Fix a bug in tclsqlite.c. (CVS 2199)drh2005-01-12
| | | FossilOrigin-Name: 50f1e229652610b386745bb39fed45549cc74aa7
* Tcl interface does as sqlite3 or as sqlite. A compile-time option allows drh2005-01-08
| | | | | duel linking. Also fix a bug in the pragma change from earlier today. (CVS 2186) FossilOrigin-Name: ad10953799f3aa15fde41cbbd5911a3b56c326ec
* Fix a C++-ism in the previous change to tclsqlite.c. (CVS 2168)drh2004-12-17
| | | FossilOrigin-Name: b49b8fdd11a5a4aac15ceda58a28bbc852f6f239
* Add 'copy' method for tcl interface. Behaves similar to shell .import or ↵tpoindex2004-12-17
| | | | | COPY statment in 2.x. (CVS 2167) FossilOrigin-Name: a9311d9df054a91e231d4e4332df0d661675744d
* Get the build of sqlite3_analyzer working with Makefile.in. (CVS 2154)drh2004-12-02
| | | FossilOrigin-Name: f7415a0d6433980ff6c25cf2238f5e9881c38873
* Add authorization callbacks for REINDEX. (CVS 2148)danielk19772004-11-23
| | | FossilOrigin-Name: 9f0d744ee4d99f44e88c6f799821791c3b5f31b6
* Add authorization callbacks to ALTER TABLE. (CVS 2093)danielk19772004-11-12
| | | FossilOrigin-Name: c4115aa3a1b010704af76c5ae9f6dcbfa4038df8
* The TCL interface responds correctly to "break", "continue", and "return"drh2004-09-13
| | | | | inside of the script of an eval statement. (CVS 1958) FossilOrigin-Name: dd62224ae8d1047db388acdc4b91eb56fb9e966a
* Fix the onecolumn method in the TCL interface so that it works the samedrh2004-09-07
| | | | | | as the eval method in all ways except for returning just the first value in the result set. (CVS 1944) FossilOrigin-Name: f323e4f86a08fe6448cbd4ff7cab459e8039d9f1
* Fix a naming conflict between sqlite versions 2 and 3. An open sqlite3drh2004-09-06
| | | | | | connection now *must* be called "sqlite3". You cannot call it "sqlite". This might break existing code. (CVS 1941) FossilOrigin-Name: 3ddf5a9d1c480a2e3aa32685879063b11afddbe1
* Protect Tcl_Obj pointers from change using Tcl_IncrRefCount() whiledrh2004-08-26
| | | | | executing SQL statements in the TCL bindings. (CVS 1903) FossilOrigin-Name: 6199f2f243514bbd4befbf768a7e03aec775bed2
* Host parameter names conform to SQL-2003. (CVS 1902)drh2004-08-25
| | | FossilOrigin-Name: fd584d1ccf6643b723c2ff0a7a16c2aea3f1142c
* Fix a bug in the parsing of wildcards that begin with '$'. (CVS 1901)drh2004-08-24
| | | FossilOrigin-Name: 054dd8901dbfe64a8f61e7b99e23512057bad99a
* Tcl interface transfers values directly between SQLite and Tcl_Objs, withoutdrh2004-08-20
| | | | | at translation to strings. (CVS 1898) FossilOrigin-Name: e97c331362545ce21117776c7b61d3488668f2bf