sQlite常用語句以及sQlite developer的使用與註冊,sqlitedeveloper

來源:互聯網
上載者:User

sQlite常用語句以及sQlite developer的使用與註冊,sqlitedeveloper

前言

sQlite是開發中比較常用的輕量級資料庫。通常只佔據幾百k的記憶體空間,所以在ios開發中,蘋果將sQlite作為資料庫應用在蘋果開發中,當然,fmdb就另當別論了。這裡主要是為了區分sQlite語句,以及mySql語句,以及Oracle之間的區別。

sQlite的常用語句歸納

1、建立表語句 create table

create table student( id integer primary key autoincrement, name varchar(20) not null, cid integer, age integer check(age >18 and age<60), gender bit default 1, score real);

請注意:這裡的autoincrement,check,bit以及real,與mySql建立表聲明欄位之間的區別。

2、插入語句 insert into

 insert into student (name,cid,age,gender,score) values ('tom',1,20,1,20);

3、更新語句 update

update student set name='jack' where name='tom';

這裡需要注意的是:在sql語句中,除了字串和日期時間用單引號外,其他任何資料類型,都不要用單引號!

4、查詢語句 select

select * from student where id=1;

這裡需要注意的是:select語句中的*代表的是欄位

5、刪除語句 delete from

delete from student where score<60;

對錶進行刪除一般都需要指定where條件,否則會直接清空資料表。

Sqlite Developer使用方法及註冊

做安卓開發使用最多的就是sqlite資料庫,但是db類型的資料庫檔案不易查看,這時候就可以使用這款軟體

這裡是程式的首頁面,左側是展現資料庫的列表

右鍵點擊資料庫列表可以選擇註冊資料庫和建立資料庫,註冊資料庫是將手機裡面的db檔案拷出來加進去,建立資料庫是自主

建立一個資料庫


當資料庫匯入後,下面會出現灰色的資料庫檔案,雙擊變亮並且展開,開啟表右擊查詢資料=====>


這裡上方的輸入框可以輸入增刪改查的語句,輸入語句後可以用滑鼠選中這一行或者幾行然後點擊左上方的放大鏡就可以讓語句跑起來。

這個軟體有一個註冊,當試過過了之後會要求註冊才能繼續使用

解決方案

開始–> 運行 –>cmd,或者是window+R按鍵組合,調出命令視窗

複製:reg delete “HKEY_CURRENT_USER\SharpPlus\SqliteDev” /v “StartDate” /f 粘貼到視窗中,斷行符號,搞定

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對幫客之家的支援。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.