sqlite 輕量級資料示例

2021-10-24 07:55:29 字數 774 閱讀 6045

sqlite - 輕量級資料示例

drop table test;

--1.建庫,建立乙個空的文字檔案,之後將副檔名 .txt 改為 .db;

--2.建表

create table if not exists test

( id integer primary key autoincrement,

name text,

kw text

);--3.建索引

create unique index test_kw_uindex on test (kw);

--4.插入資料

insert into test(name,kw) values(2,3);

--4.1 如果存在,則刪除後重新 insert,自增主鍵將改變

insert or replace into test(name,kw) values(2,3);

--4.1 如果存在,則忽略 insert

insert or ignore into test(name,kw) values(2,3);

--4.1 其他 insert

insert or rollback into test(name,kw) values(2,3);

insert or fail into test(name,kw) values(2,3);

insert or abort into test(name,kw) values(2,3);

select * from test;

C 使用sqlite 輕量級資料庫

一,準備工作 3070800.zip 就ok了precompiled binaries for windows sqlite shell win32 x86 3070800.zip 248.28 kib 用於visual studio 專案中引用 二,試用sqlite3.exe 解壓sqlite s...

android 輕量級資料庫sqlite入門

sqlite 的基本介紹 一.sqlite資料庫 1.sqlite資料庫的特點 安卓手機自帶,小巧,適合在手機中使用 不區分資料型別 主鍵除外 sql語句和mysql幾乎相同 sqlite不使用jdbc連線,使用的是android自有的api 每個資料庫對應乙個檔案 二,sqlite 資料庫的建立 ...

C 使用sqlite 輕量級資料庫

一 準備工作 precompiled binaries for windows sqlite shell win32 x86 3070800.zip 248.28 kib 用於visual studio 專案中引用 二,試用sqlite3.exe 解壓sqlite shell win32 x86 3...