aboutsummaryrefslogtreecommitdiff
path: root/src/sqlite3ext.h
Commit message (Collapse)AuthorAge
...
* Make the sqlite3_value_subtype() and sqlite3_result_subtype() interfacesdrh2015-09-10
| | | | | available to loadable extensions. FossilOrigin-Name: c6fca0be11f7414292279e2ea1b004260e6f4bb6
* Make the sqlite3ext.h header file responsive to -DSQLITE_OMIT_LOAD_EXTENSION.drh2015-09-10
| | | FossilOrigin-Name: 47a46a9fa4a96cdb96a20b6aec802661b1ee4598
* Add a missing #define for sqlite3_vsnprintf to sqlite3ext.h.drh2015-08-21
| | | FossilOrigin-Name: da3c9df09c46564353218d0163e378b880a3ce62
* Add the sqlite3_bind_zeroblob64() API.dan2015-07-24
| | | FossilOrigin-Name: 1997ee548b2e569a39e73319b661c1a78dfe5dae
* Add the sqlite3_result_zeroblob64() API. Use it in the SQL zeroblob() function.dan2015-07-24
| | | FossilOrigin-Name: c6445b9fb4d7d1a8479436d7d183bad754a01615
* Fix harmless compiler warnings.drh2015-06-15
| | | FossilOrigin-Name: b0badb99023e23bef0e2064cec58f2b279af0c0b
* Add the sqlite3_value_dup() and sqlite3_value_free() interfaces. Usedrh2015-05-20
| | | | | | these interfaces to enhance R-Tree to add the sqlite3_rtree_query_info.apSqlParam field. FossilOrigin-Name: a7ee40c4fc62843ac5b96ba47ca14a66e8cd6961
* Change the name of the _texte64() interfaces to just _test64(), without the "e".drh2014-09-09
| | | FossilOrigin-Name: 6ab76c5fedfe568b0f0f34a600f9135bf6558148
* Add new interfaces to the loadable extension mechanism.drh2014-09-09
| | | FossilOrigin-Name: 18d80cbc590165913d82056aa69ddaeea07b76ec
* Fix typos in comments. No code changes.peter.d.reid2014-09-06
| | | FossilOrigin-Name: e62aab5e9290503869e1f4d5e0fefd2b4dee0a69
* Modify several extensions to use the new exported function naming. Fix some ↵mistachkin2013-07-04
| | | | | shared library compilation issues. FossilOrigin-Name: f2ab8747825ab5131ffab174aa0ffe5e474f6811
* Make the SQLITE_EXTENSION_INIT1 and SQLITE_EXTENSION_INIT2 macros intodrh2013-04-19
| | | | | no-ops if the extension is statically linked. FossilOrigin-Name: 86eb3eed4c70730dba0e319f243f8cb4fa8de06c
* Add recent API additions to the extension mechanism.drh2013-02-13
| | | FossilOrigin-Name: 7e10a62d0eb1cb2bdafb6752b78a9d368e9f21f5
* Fix some code formatting in sqlite3Ext.h to avoid lines longer than 80drh2011-10-29
| | | | | characters. FossilOrigin-Name: 3ec20c3020e1bb5ec2815848af75cf4847a218e5
* Changes to allow FTS to be compiled as a loadable module again.dan2011-06-28
| | | FossilOrigin-Name: 29e69f389cb0078e125ba5814a68b3fe8cf634c6
* Make APIs added since version 3.6.0 accessible to loadable extensions.drh2010-10-11
| | | FossilOrigin-Name: 76c64a35567880b49af076df61c9fee76e934f14
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
| | | FossilOrigin-Name: f6c045f649036958078cb15cd9d5453680c82b0c
* Added SQLITE_OMIT_DEPRECATED compile time option to leave out deprecated ↵shane2008-10-12
| | | | | functions. Updated test scripts to skip tests of deprecated functions if they are compiled out. (CVS 5808) FossilOrigin-Name: ba3711acee6f4659bbf133a23d8f9f37e14d0f38
* Changes to loadext.test so that it works on osx as well as linux. (CVS 5329)danielk19772008-06-30
| | | FossilOrigin-Name: 189cd85413a2e00696752bb82e7a442e86e621ac
* Remove unused variable. Fix a compiler warning. (CVS 5319)drh2008-06-27
| | | FossilOrigin-Name: 0b01ec5cf7725a02d4c12167df125cef578f6219
* Add recent API additions to the loadable extension interface. (CVS 5246)drh2008-06-19
| | | FossilOrigin-Name: 12ba27d94e3fb448f88b5efb43b35242fd893297
* Add a new interface, sqlite3_context_db_handle(), that returns the databasedrh2008-03-19
| | | | | connection pointer for an application-defined function. (CVS 4889) FossilOrigin-Name: 54c55cae556af5a16c0ce8be1a96d2932db80ad8
* Update the loadable extension module to include recently added interfaces. ↵drh2008-03-19
| | | | | (CVS 4886) FossilOrigin-Name: bf1cecede88d2a21eb4891a343f3c19bb5416263
* Add a new api sqlite3_randomness() for providing access to SQLite'sdrh2008-03-19
| | | | | internal PRNG. Add sqlite3_test_control() verbs for controlling the PRNG. (CVS 4882) FossilOrigin-Name: 15110ea02768bfe977a57eccd6b941a36ebd6b32
* Trivial text cleanups (CVS 4815)mlcreech2008-03-02
| | | FossilOrigin-Name: bbf9f0e6e23ce6c2729843535b8599c7bacb0f83
* Initial implementation of the sqlite3_file_control() interface.drh2007-08-31
| | | | | | Compiles and passes all historical tests but the new method is itself untested. (CVS 4353) FossilOrigin-Name: d3ab3e3911f10b17d0859a34f4f007c790a0cd82
* Make mutex functions available to loadable extensions. Fix thedrh2007-08-30
| | | | | amalgamation generator to include the latest source files. (CVS 4346) FossilOrigin-Name: 293a3f837bd6c6a26f694a9210e59ace23abb6bb
* Make the latest interfaces usable by loadable extensions. (CVS 4343)drh2007-08-30
| | | FossilOrigin-Name: e9b2700b8c30b0255c9e33419ff18bdebb78087a
* The malloc.test script now passes all tests with no errors. (CVS 4271)drh2007-08-22
| | | FossilOrigin-Name: db818430e9ea4ef4a4af575784009d5acae785a3
* More work on refactoring of malloc() interfaces. There are still many ↵danielk19772007-08-16
| | | | | errors. (CVS 4233) FossilOrigin-Name: 77b1671351fe94b0ebc126a63140643deae2aa64
* Keep sqlite3ext.h backwards compatible. This really should have been partdrh2007-07-20
| | | | | of the previous check-in. (CVS 4169) FossilOrigin-Name: 7cf15a5f651f0777972e21e0a96d601cf294f0f3
* Extend fts2 so that user defined tokenizers may be added. Add a tokenizer ↵danielk19772007-06-22
| | | | | that uses the ICU library if available. Documentation and tests to come. (CVS 4108) FossilOrigin-Name: 68677e420c744b39ea9d7399819e0f376748886d
* Add the sqlite3_clear_bindings() API to the loadable extension interface.drh2007-03-29
| | | | | Ticket #2135. (CVS 3752) FossilOrigin-Name: 3111b43ec333f3342f9609bf441160040f3d1501
* Add the sqlite3_prepare_v2 and sqlite3_prepare16_v2 APIs to the loadabledrh2007-03-25
| | | | | extension interface. (CVS 3713) FossilOrigin-Name: f02ba56d5c6bbd57682a6bb57e9f92021dfb066e
* Do not use the symbol "interrupt" since that is a reserved word indrh2007-01-09
| | | | | OpenWatcom. Ticket #2159. (CVS 3579) FossilOrigin-Name: 9960ba576827f8ced6eac101313a481f2a2f4b69
* Fix a build problem around sqlite3_overload_function. Only affectsshess2006-09-22
| | | | | so/dll builds. (CVS 3435) FossilOrigin-Name: 791d70936b9c4fed57c95f61e3b4dfdd24221ee4
* Tighten an assert (ticket #1920). Change to "sqlite3.h" from <sqlite3.h>drh2006-08-15
| | | | | on the sqlite3ext.h header (ticket #1916). Fix a bug in the test scripts. (CVS 3354) FossilOrigin-Name: 3ebedbb6f90ec0f9d3bed181f8fb5366f91fc48c
* Export the sqlite3_bind_value API to loadable extensions. (CVS 3299)drh2006-06-27
| | | FossilOrigin-Name: 1ca385bb39514cb73f506bfbbe38aabb6b70816c
* Publish APIs sqlite3_malloc() and sqlite3_realloc() that use the OS-layerdrh2006-06-26
| | | | | | memory allocator. Convert sqlite3_free() and sqlite3_mprintf() to also use the OS-layer memory allocator. (CVS 3298) FossilOrigin-Name: 85a66a25e97471d3c459c8da6a96990b0537dc7d
* Rework the way UPDATE works for virtual tables. (CVS 3262)drh2006-06-16
| | | FossilOrigin-Name: 2119e7bf5577350e4e1236ea729568085620a826
* Add column_value, declare_vtab and create_module to the function table used ↵danielk19772006-06-15
| | | | | by dynamic extensions. (CVS 3256) FossilOrigin-Name: 25c475087892fea83bce9d140b46651793b85a86
* New shell command ".load" and the sqlite3_load_extension() API allowdrh2006-06-08
new SQL functions and collating sequences to be loaded at run-time from a DLL or shared library. (CVS 3207) FossilOrigin-Name: 4ca932d3ae9bb97b819b5baf6fd3e1cebda9e0e2