aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
Commit message (Collapse)AuthorAge
...
* Add support for named wildcards in SQL statements. (CVS 1897)drh2004-08-20
| | | FossilOrigin-Name: d3be0b7c5a39c02b9b2d6d85f1595d591984a569
* Fix problems for 64-bit machines and when SQLITE_OMIT_AUTHORIZATION is ↵drh2004-07-26
| | | | | defined. (CVS 1868) FossilOrigin-Name: e3cad1ab6226089265b4d15c6fc67cc33a31425f
* First cut at a analysis tool for version 3.0 databases. (CVS 1862)drh2004-07-23
| | | FossilOrigin-Name: 7c7f698b2eda7b1b34f5ca7fe104145d8bbd8f56
* Changes in support of using a codec. (CVS 1844)drh2004-07-22
| | | FossilOrigin-Name: b77bec35742f07d79da3e85baee09a90c1494415
* Fix a memory allocation problem in os_test.c (CVS 1782)danielk19772004-06-30
| | | FossilOrigin-Name: ed511c2ea9581933ca504ce4b43d863503c6cc22
* Coverage improvements for malloc and vdbemem.c (CVS 1781)danielk19772004-06-30
| | | FossilOrigin-Name: a98dd004c4d328eb44a71fecdbf8c5ab416dc524
* Ensure the tcl interface returns an error when sqlite3_create_function()danielk19772004-06-29
| | | | | fails. (CVS 1764) FossilOrigin-Name: 357a82cd224e33e11870ad7c2f934c27af682881
* Improved test coverage of tclsqlite.c (CVS 1761)drh2004-06-29
| | | FossilOrigin-Name: 008e57dcd5e16886ed732fe1e9797a3c00e8c579
* Add testing for sqlite3_trace() and fix a bug. (CVS 1760)drh2004-06-29
| | | FossilOrigin-Name: 7a15391079ae9ce5360fa13e8779c8872885e789
* Update sqlite3_changes() to match the documentation and adddanielk19772004-06-21
| | | | | sqlite3_total_changes(). (CVS 1645) FossilOrigin-Name: ae2f4a0943854fedbbb6fab1dc3aaf972722ed95
* Remove the iCollate argument from sqlite3_create_function() (CVS 1632)danielk19772004-06-19
| | | FossilOrigin-Name: 728d57ff5517a51c3aad4ba95525b1aa2065bd19
* Change the name of the TCL command from "sqlite" to "sqlite3" so that bothdrh2004-06-19
| | | | | SQLite version 2 and SQLite version 3 can be used by Tcl at the same time. (CVS 1626) FossilOrigin-Name: d705d051bed2b92b6c3bbcc75fe5b056633b9c31
* Changes to allow libsqlite3.a and libsqlite.a to be both linked into thedrh2004-06-18
| | | | | same program at the same time. (CVS 1621) FossilOrigin-Name: 2590fffcaa92adc619f7a927d2b5169d8dfef50a
* Have the TCL 'errorcode' interface call sqlite3_errcode(). (CVS 1589)danielk19772004-06-14
| | | FossilOrigin-Name: f4b4df6514c19b0c23b399142749a7e4a20d0f70
* (1) Modifications to the user-function interface and (2) Internal changesdanielk19772004-06-12
| | | | | to automatically created indices. (CVS 1575) FossilOrigin-Name: 5903f53828b5d282b33e27813417e4317c9ecf0b
* Change prototype for busy callbacks to "int xBusy(void *, int);" (CVS 1573)danielk19772004-06-12
| | | FossilOrigin-Name: 4f1cfca5ca703d0068cf8d6222dc8e0cfb7e24b6
* Add the sqlite3_collation_needed() API and fix some error handling casesdanielk19772004-06-10
| | | | | involving unknown collation sequences. (CVS 1562) FossilOrigin-Name: edf069b9f4044ed2a80962c7722052bf1b80bf45
* Change the collation sequence interface to allow collation sequences thatdanielk19772004-06-10
| | | | | use UTF-16 in non-native byte order to be registered. (CVS 1559) FossilOrigin-Name: b8aaa3a29e0ddef357ab1b3b0b9f87ed390f2f36
* Some progress on user-defined collation sequences. (CVS 1544)danielk19772004-06-09
| | | FossilOrigin-Name: c634e71f1909819fb55c728bc410e5cc390428e3
* Remove the third argument from the sqlite3_open() API. (CVS 1540)danielk19772004-06-08
| | | FossilOrigin-Name: 62e31f396cb6b49f542977e2fade78e11e371132
* Remove the sqlite3_libencoding() api and the ISO8859 encoding option. (CVS 1523)drh2004-06-02
| | | FossilOrigin-Name: b53640ed2232aaf173a71636073477d80407d11f
* Remove the sqlite3_error_string() API. (CVS 1514)danielk19772004-05-31
| | | FossilOrigin-Name: af8e2006d808031a040f293c44f3bfbe841b866b
* Change all SQLITE3 preprocessor macros to SQLITE. Documentation updates. ↵drh2004-05-31
| | | | | (CVS 1511) FossilOrigin-Name: adf7e29ff60dc559f64832fadb09f0b9decc0e76
* Allow CREATE and DROP TRIGGER on attached databases. (CVS 1488)danielk19772004-05-29
| | | FossilOrigin-Name: 4060a37d0baaa60c50f2dde4a1ab344133fcabbb
* A couple of test cases and fixes for blob literals. (CVS 1474)danielk19772004-05-27
| | | FossilOrigin-Name: 6d552af67cf6fa6935373ba39de5c47ebf613eb9
* Alter the Tcl eval sub-command so that it supports blobs. (CVS 1473)danielk19772004-05-27
| | | FossilOrigin-Name: b5d5f0ad717ef43a9714dd1cc40e20d1b94a3e58
* Refactoring of the vdbe Mem functions and the APIs that deal with them.drh2004-05-26
| | | | | The code will not compile in its current state. (CVS 1465) FossilOrigin-Name: bba6684d502ba1ecd9614d2470ec94296e3c07c2
* Remove dataType and includeTypes flags from function definitions. Added newdrh2004-05-26
| | | | | | P3_FUNCDEF type for P3 arguments on opcodes. Fixes to several user functions. 28 tests fail now. (CVS 1464) FossilOrigin-Name: 36e031625995b2f7baf7654d771ca8fb764a0085
* Use the new form of the sqlite3_create_function() API. (CVS 1460)danielk19772004-05-26
| | | FossilOrigin-Name: 0317bef4b0c219ca2888c90553201e53230fb360
* Use the new API calls more consistently. (CVS 1459)danielk19772004-05-26
| | | FossilOrigin-Name: 17e7db488dac6b30d174f2272edf1046c2bb9990
* Change a couple of symbol names for the new user function API. (CVS 1454)danielk19772004-05-25
| | | FossilOrigin-Name: 8f6b20c2938ded7ab9e400494c02370ecf7e9311
* Use the new API for returning values and errors from user functions. (CVS 1453)danielk19772004-05-25
| | | FossilOrigin-Name: 4eccae03b4a7f37804fea30416579787c3584bb2
* Non-aggregate SQL functions use sqlite_value* instead of const char * fordanielk19772004-05-24
| | | | | argument values. (CVS 1449) FossilOrigin-Name: 1e47d7384d5fdfceb6ec737c656f70be59ba5b01
* Use the new form of the sqlite3_open() API everywhere. (CVS 1437)danielk19772004-05-22
| | | FossilOrigin-Name: b449217318ade3196757bef8aaf7302634f0f9b6
* Minor changes to the vdbe so that more tests pass. (CVS 1352)danielk19772004-05-11
| | | FossilOrigin-Name: 16078fe0ea146537f75b869e6b0cce202af6781b
* Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)danielk19772004-05-10
| | | FossilOrigin-Name: 2242423e31a5e81e89ffcc99e62307c5cc0120d5
* Change lots of internal symbols from sqliteXXX to sqlite3XXX so that thedanielk19772004-05-08
| | | | | | library links again. It doesn't work yet, due to changes in the btree layer calling convention. (CVS 1324) FossilOrigin-Name: 8af6474c49263ae26216dff9465b33f76b500cf4
* The btree.c module compiles and links and passes some tests. Many testsdrh2004-05-07
| | | | | still fail, though. (CVS 1321) FossilOrigin-Name: d394b2b217d4d728f9eba397262bf9d36195719e
* Add code to convert between the various supported unicode encoding schemes.danielk19772004-05-06
| | | | | Untested at this point. (CVS 1315) FossilOrigin-Name: 71260ff7f7030f56c292b43f83a213c65c9a184e
* Pager tests working. (CVS 1308)drh2004-04-26
| | | FossilOrigin-Name: 910067a200c4b25b5d813a84146673d3d1c80952
* Add comments and prototype for experimental sqlite_last_statement_changes() ↵rdc2004-02-25
| | | | | API function. Also, allow function to be called from tcl. (CVS 1273) FossilOrigin-Name: ca99920b0dbf773962b47766d690154fd1276513
* Add a new parameter to the (unimplemented) encryption API. (CVS 1234)drh2004-02-12
| | | FossilOrigin-Name: 5fe8f02306cf1c0af2148835cee0df3003ad0874
* Fix the shells so that they always enable the codec if it is available,drh2004-02-11
| | | | | even if no key is supplied. (CVS 1226) FossilOrigin-Name: 95989717e17d52b2306374f5cf7613c3bd4e7801
* Pass all (relevant) regression tests when using the codec. (CVS 1223)drh2004-02-11
| | | FossilOrigin-Name: 5200e9edc5fdba0285a3cb1cd808cbf66d7a349e
* Fix the handling of -init option to the sqlite shell. Ticket #568.drh2004-02-01
| | | | | Also add hooks for encrypting the database. (CVS 1206) FossilOrigin-Name: 3c796de8d1af55944f396f08feaa9e69c1652896
* Reinsert the experimental sqlite_commit_hook() API. (CVS 1179)drh2004-01-15
| | | FossilOrigin-Name: 72bc84f2f18f6eeb279a4ad670310e85d154f663
* Remove a comma at the end of an enum definition. Some compilers could notdrh2003-12-19
| | | | | deal with it. (CVS 1140) FossilOrigin-Name: b1890a5b9c1222086b3aae92e49eb090a17a6492
* Add new thread-testing code and fix locking under Linux threads. Ticket ↵drh2003-12-19
| | | | | #530. (CVS 1137) FossilOrigin-Name: b36a4bb61094d539273c21a9e4042384f10a7806
* Add sqlite_progress_handler() API for specifying an progress callback (CVS 1111)danielk19772003-10-18
| | | FossilOrigin-Name: ddb364635a207658664ea92fc677cf16a143a938
* Add the "onecolumn" method to the TCL language bindings. (CVS 1076)drh2003-08-19
| | | FossilOrigin-Name: c7b4c28fbc0bca5645af5750fd353f4eca400b40