otl 操作 sqlite3 簡單例子

2021-06-06 16:15:05 字數 1051 閱讀 8339

我用sqlite3作為odbc,在vc6.0下試了以下程式沒有問題,可以用#define odbcver 0x0250).

c/c++ code

#include 

<

iostream

>

using

namespace

std;

#include

<

stdio.h

>

#include

<

string

.h>

#include

<

stdlib.h

>

#define

otl_odbc

//compile otl 4.0/odbc

//#define otl_odbc_unix

//如果在unix下使用unixodbc,則需要這個巨集

#define

odbcver 0x0250

#include

<

otlv4.h

>

//include the otl 4.0 header file

otl_connect db;

//connect object

void

insert()

//insert rows into table }

void

update(

const

intaf1)

//insert rows into table

void

select(

const

intaf1) }

intmain()

catch

(otl_exception

&p)

db.logoff();

//disconnect from the database

return0;

}

**

lua簡單操作sqlite3

本文源自 luasql模組支援sqlite3,可以完成最基本的資料庫功能,不過官方文件上寫得不是很詳細。掃了下源 外加實驗了下,得出了點經驗。windows xp,luaforwindows require luasql.sqlite3 function enum table t print for...

sqlite3簡單命令操作

sqlite3簡單命令操作 sqlite3命令 在控制台中輸入sqlite3 幫助命令 help 退出命令 quit exit 建立乙個新的資料庫 sqlite3 檔案名字 在db目錄中新建乙個test.db資料庫檔案 mkdir db cd db sqlite3 test.db sqlite3 已...

使用sqlite3 模組操作sqlite3資料庫

python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...