First public contribution.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** Test extension for testing the sqlite3_auto_extension() function.
14 ** $Id: test_autoext.c,v 1.5 2008/07/08 02:12:37 drh Exp $
17 #include "sqlite3ext.h"
19 #ifndef SQLITE_OMIT_LOAD_EXTENSION
20 static SQLITE_EXTENSION_INIT1
23 ** The sqr() SQL function returns the square of its input value.
26 sqlite3_context *context,
30 double r = sqlite3_value_double(argv[0]);
31 sqlite3_result_double(context, r*r);
35 ** This is the entry point to register the extension for the sqr() function.
40 const sqlite3_api_routines *pApi
42 SQLITE_EXTENSION_INIT2(pApi);
43 sqlite3_create_function(db, "sqr", 1, SQLITE_ANY, 0, sqrFunc, 0, 0);
48 ** The cube() SQL function returns the cube of its input value.
51 sqlite3_context *context,
55 double r = sqlite3_value_double(argv[0]);
56 sqlite3_result_double(context, r*r*r);
60 ** This is the entry point to register the extension for the cube() function.
65 const sqlite3_api_routines *pApi
67 SQLITE_EXTENSION_INIT2(pApi);
68 sqlite3_create_function(db, "cube", 1, SQLITE_ANY, 0, cubeFunc, 0, 0);
73 ** This is a broken extension entry point
75 static int broken_init(
78 const sqlite3_api_routines *pApi
81 SQLITE_EXTENSION_INIT2(pApi);
82 zErr = sqlite3_mprintf("broken autoext!");
88 ** tclcmd: sqlite3_auto_extension_sqr
90 ** Register the "sqr" extension to be loaded automatically.
92 static int autoExtSqrObjCmd(
98 int rc = sqlite3_auto_extension((void*)sqr_init);
99 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
104 ** tclcmd: sqlite3_auto_extension_cube
106 ** Register the "cube" extension to be loaded automatically.
108 static int autoExtCubeObjCmd(
112 Tcl_Obj *CONST objv[]
114 int rc = sqlite3_auto_extension((void*)cube_init);
115 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
120 ** tclcmd: sqlite3_auto_extension_broken
122 ** Register the broken extension to be loaded automatically.
124 static int autoExtBrokenObjCmd(
128 Tcl_Obj *CONST objv[]
130 int rc = sqlite3_auto_extension((void*)broken_init);
131 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
135 #endif /* SQLITE_OMIT_LOAD_EXTENSION */
139 ** tclcmd: sqlite3_reset_auto_extension
141 ** Reset all auto-extensions
143 static int resetAutoExtObjCmd(
147 Tcl_Obj *CONST objv[]
149 sqlite3_reset_auto_extension();
155 ** This procedure registers the TCL procs defined in this file.
157 int Sqlitetest_autoext_Init(Tcl_Interp *interp){
158 #ifndef SQLITE_OMIT_LOAD_EXTENSION
159 Tcl_CreateObjCommand(interp, "sqlite3_auto_extension_sqr",
160 autoExtSqrObjCmd, 0, 0);
161 Tcl_CreateObjCommand(interp, "sqlite3_auto_extension_cube",
162 autoExtCubeObjCmd, 0, 0);
163 Tcl_CreateObjCommand(interp, "sqlite3_auto_extension_broken",
164 autoExtBrokenObjCmd, 0, 0);
166 Tcl_CreateObjCommand(interp, "sqlite3_reset_auto_extension",
167 resetAutoExtObjCmd, 0, 0);