Sqlite資料庫的使用

2021-09-01 17:58:29 字數 721 閱讀 4989

'以上表的操作為 cn.execute str_sqlstring

——————————————————————————————————————————————

·表的查詢

str_sqlstring="select * from testtable [where testcol02='hello'] [limit 1440 offset 2880]"

where 後面是條件

limit 後面是限制顯示1440條

offset 後面是從開始的2880後開始的1440條

'由於查詢資料需要返回資料應該使用 set rs = cn.prepare(str_sqlstring)

'關於查詢的記錄集的使用

mshflexgrid1.rows = rs.rowcount

for count1 = 0 to mshflexgrid1.rows - 1

if rs.step() then exit for'檢視是否是記錄集的結尾

for count2 = 0 to 22

mshflexgrid1.textmatrix(count1, count2) = rs.columnvalue(count2)'指定欄位的資料

next

next

rs.close

set rs = nothing  '關閉記錄集並設定其為空

本次使用的sqlite版本為litexlib  sqlite

QML使用Sqlite資料庫

在程式中,我們經常需要把一些資料持久化,比如一些設定資訊和程式配置。qml並不能直接訪問本地檔案,但是可以通過 offline storage api訪問本地sqlite資料庫,從而達到目的。首先在qml目錄下建立乙個storage.js 首先建立乙個helper方法連線資料庫 function g...

Android 使用資料庫 SQlite

搞android開發很久了,卻還沒有寫過sqlite 先寫寫基礎的,後面擴充。package com.king.android.db import android.content.contentvalues import android.content.context import android....

SQLite資料庫簡單使用

二 建立資料庫 sqlite3 student.db 建立名為student的資料庫 sqlite3命令,引數就是資料庫的名稱,如果該資料庫已存在,則使用,如果不存在,則新建乙個 如圖 三 建立表 create table person id integer primary key autoincr...