,大家幫忙捧捧場。
1。使用sqlliite架構
2。如何建立資料庫
在cmd模式
$ sqlite3 sample.db
sqlite> create table test(
...> id integer primary key,
...> name varchar(255)
...> );
首先先cd 到你要儲存資料庫的路徑下。再執行以上**。
第一句 sqlite3 sample.db意思是在該目錄下建立乙個sample.db資料庫。在這,字尾.db可以是任何形式,比如網路上有一些是.sql
第二句寫的是建立表
如果要退出輸入 .quit
3.如何運算元據,建議使用開源的
使用開源資料庫fmdb
資料庫(庫操作)
information schema 虛擬庫,不占用磁碟空間,儲存的是資料庫啟動後的一些引數,如使用者表資訊 列資訊 許可權資訊 字元資訊等 performance schema mysql 5.5開始新增乙個資料庫 主要用於收集資料庫伺服器效能引數,記錄處理查詢請求時發生的各種事件 鎖等現象 my...
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 1 建立表 create table student stu no char 12 not null primary key,stu name varchar 20 not null gender tinyint 1 default1,age tinyint...
資料庫操作
第乙個問題 通常用datareader對像 sqlcommand comm new sqlcommand select count from login where name textbox1.text and password textbox2.text,conn datareader dr co...