⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samplext.c

📁 SQLite ODBC Driver SQLite3 的ODBC驱动
💻 C
字号:
/*
 * SQLite3 example extension from wiki
 * http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions
 *
 * Compile with
 *   tcc -rdynamic -shared -o samplext.dll samplext.c
 */

#include <sqlite3ext.h>

SQLITE_EXTENSION_INIT1

/*
 * The half() SQL function returns half of its input value.
 */
static void halfFunc(
  sqlite3_context *context,
  int argc,
  sqlite3_value **argv
){
  sqlite3_result_double(context, 0.5 * sqlite3_value_double(argv[0]));
}

/*
 * SQLite invokes this routine once when it loads the extension.
 * Create new functions, collating sequences, and virtual table
 * modules here.  This is usually the only exported symbol in
 * the shared library.
 */
int sqlite3_extension_init(
  sqlite3 *db,
  char **pzErrMsg,
  const sqlite3_api_routines *pApi
){
  SQLITE_EXTENSION_INIT2(pApi)
  sqlite3_create_function(db, "half", 1, SQLITE_ANY, 0, halfFunc, 0, 0);
  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -