-
大小: 1.49MB文件类型: .zip金币: 2下载: 5 次发布日期: 2021-04-07
- 语言: VB
- 标签: sqlite vb litex_sqlite
资源简介
sqlite支持vb6的版本,使用该版本后就能用vb6.0操作sqlite数据库了,速度比较快,使用前先注册
代码片段和文件信息
/*
** 2004 October 31
**
** The author disclaims copyright to this source code. In place of
** a legal notice here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely never taking more than you give.
**
*************************************************************************
** This file contains the C functions that implement blob
** functions for SQLite.
**
** There is only one exported symbol in this file - the function
** sqlite3_register_blob_functions() found at the bottom of the file.
** All other code has file scope.
**
*/
#include
#include
#include
#include
#include
#include “blobfn.h“
#ifdef _UNICODE
#define BLOB_CP SQLITE_UTF16LE
#else
#define BLOB_CP SQLITE_UTF8
#endif
static int get_first_param(
sqlite3_context *context
int argc
sqlite3_value **argv
int* pnSize
const char** ppBlob )
{
if ( (argc > 0) &&
(sqlite3_value_type(argv[0]) == SQLITE_BLOB ) )
{
*pnSize = sqlite3_value_bytes( argv[0] );
*ppBlob = (const char*)sqlite3_value_blob( argv[0] );
return 1;
}
else
{
return 0;
}
}
static TCHAR get_second_param(
sqlite3_context *context
int argc
sqlite3_value **argv
TCHAR cDef )
{
if ( (argc > 1) &&
(sqlite3_value_bytes(argv[1])>0) &&
(sqlite3_value_type(argv[1]) == SQLITE_TEXT ) )
{
#ifdef _UNICODE
return *( (const WCHAR*)sqlite3_value_text16le(argv[1]) );
#else
return *sqlite3_value_text(argv[1]);
#endif
}
else
{
return cDef;
}
}
/*
** tovis
*/
static void tovisFunc(
sqlite3_context *context
int argc
sqlite3_value **argv )
{
int nSize i;
const char* pBlob;
PTSTR pszRes;
TCHAR cRep;
char c;
if ( !get_first_param( context argc argv &nSize &pBlob ) )
{
return;
}
cRep = get_second_param( context argc argv _T(‘\0‘) );
if ( !_istprint(cRep) ) cRep = _T(‘.‘); // default value
pszRes = malloc( nSize * sizeof(TCHAR) );
if ( !pszRes )
{
return;
}
for( i=0; i {
c = pBlob[i];
pszRes[i] = isprint(c)? c : cRep;
}
#ifdef _UNICODE
sqlite3_result_text16le(context pszRes nSize * sizeof(WCHAR) SQLITE_TRANSIENT);
#else
sqlite3_result_text(context pszRes nSize SQLITE_TRANSIENT);
#endif
free(pszRes);
}
static const TCHAR HEXDIG[] = _T(“0123456789ABCDEF“);
/*
** tohex
*/
static void tohexFunc(
sqlite3_context *context
int argc
sqlite3_value **argv )
{
int nSize i j;
const char* pBlob;
PTSTR pszRes;
TCHAR cSep;
char c;
int nAddSep;
if ( !get_first_param( context argc argv &nSize
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2006-04-23 18:40 Doc\
文件 1854 2006-04-23 18:39 Doc\ado_dot_net.html
文件 38519 2006-05-12 23:25 Doc\automation.html
文件 1633 2006-04-27 22:35 Doc\index.html
文件 66143 2006-05-12 23:22 Doc\pp.html
目录 0 2006-02-18 12:37 Inc\
文件 57 2006-04-23 17:40 Inc\Readme.txt
目录 0 2006-02-18 12:37 Lib\
目录 0 2006-04-23 18:59 LibDll\
文件 15268 2006-04-23 17:18 LibDll\sqlite3.exp
文件 25196 2006-04-23 17:18 LibDll\sqlite3.lib
文件 15268 2006-04-23 11:30 LibDll\sqlite3d.exp
文件 25306 2006-04-23 11:30 LibDll\sqlite3d.lib
文件 15274 2006-04-23 11:46 LibDll\sqlite3du.exp
文件 25424 2006-04-23 11:46 LibDll\sqlite3du.lib
文件 15272 2006-04-23 17:18 LibDll\sqlite3u.exp
文件 25306 2006-04-23 17:18 LibDll\sqlite3u.lib
目录 0 2006-04-23 17:41 litex\
目录 0 2006-05-14 21:40 litex\bin\
文件 26 2004-08-16 21:07 litex\bin\reg_litex.bat
文件 216064 2006-05-14 21:33 litex\bin\sqlite3.dll
文件 216576 2006-05-14 21:34 litex\bin\sqlite3u.dll
文件 29 2004-08-16 21:07 litex\bin\ureg_litex.bat
文件 4612 2004-11-03 22:17 litex\blobfn.c
文件 242 2004-09-28 18:30 litex\blobfn.h
文件 4764 2006-05-14 21:32 litex\Changelog.txt
文件 5535 2006-04-27 21:25 litex\Connection.cpp
文件 2292 2006-04-27 21:22 litex\Connection.h
文件 831 2004-11-10 17:11 litex\dlldata.c
文件 1161 2004-08-08 08:29 litex\dlldatax.c
文件 754 2004-08-08 08:29 litex\dlldatax.h
............此处省略127个文件信息
相关资源
- vb.net2012操作跨窗体控件单线程和多线
- 枸杞叶总黄酮对UVB辐射导致的光损伤
- vb的一款下拉框控件
- 梦幻西游地图解包工具(VB版)
- VB+Oracle9数据库开发
- VB6+VsflexGrid做的程序
- VB使用MSChart控件生成圆形图表.rar
- VB开发之Ribbon工具条的使用代码及方法
- VB与SQL Server连接的三种方式
- vb数据库备份源代码
- VB6.0反编译工具
- VBA 汉字转拼音
- 基于Excel VBA测绘数据处理自定义函数
- VB 编写自动点击鼠标前后台
- 移除VBA项目密码工具
- VBA自动生成代码工具
- vb6_高精度Timer控件
- VBA调用dll
- VBA模板大全
- VBA+SQL数据处理
- VB6开发的 OFFICE RIBBON 插件
- 应用VB或VBA对Coreldraw进行二次开发
- VBA教程.chm
- ACCESS保存图片程序VBA
- VB6会员管理
- Excel.VBA从入门到精通(绝对实用)
- VB游戏五彩连珠源码.rar
- RK_MINIEVB_RV1108_V1.1_用户指南_20180224.p
-
VB使用Microsoft.xm
lHTTP判断程序是否联 - vbRichClient例程包括多线程,sqlite,c
评论
共有 条评论