|
docudb
1.0
|
Go to the source code of this file.
Functions | |
| void | sqlite_regexp_func (sqlite3_context *context, int argc, sqlite3_value **argv) |
| Implements the REGEXP operator for SQLite. Called by SQLite when expr REGEXP pattern is evaluated. | |
| void sqlite_regexp_func | ( | sqlite3_context * | context, |
| int | argc, | ||
| sqlite3_value ** | argv ) |
Implements the REGEXP operator for SQLite. Called by SQLite when expr REGEXP pattern is evaluated.
| context | SQLite function context (for setting result). |
| argc | Number of arguments (should be 2). |
| argv | Array of SQLite value pointers (argv[0]=pattern, argv[1]=text). |
Definition at line 14 of file sqlite_extensions.cpp.