[轉]Learn SQLite in 1 hour

来源:http://www.cnblogs.com/luoxu34/archive/2016/02/29/5226221.html
-Advertisement-
Play Games

轉載說明: 1.原文地址:http://www.askyb.com/sqlite/learn-sqlite-in-1-hour/ 2.譯文地址:http://www.oschina.net/question/12_53183(紅薯翻譯) 3.英文原文有5處錯誤,下麵的已經修正過了 原文如下: Lea


轉載說明:

1.原文地址:http://www.askyb.com/sqlite/learn-sqlite-in-1-hour/

2.譯文地址:http://www.oschina.net/question/12_53183(紅薯翻譯)

3.英文原文有5處錯誤,下麵的已經修正過了

 

原文如下:

Learn SQLite in 1 hour

askyb on May, 9th 2012 in SQLite

1. Introduction

SQLite is an open source, embedded relational database which implements a self-contained, serverless, zero-configuration,transactional SQL database engine. SQLite has a well-deserved reputation for being highly portable, easy to use, compact, efficient, and reliable. Unlike client–server database management systems, installing and running of SQLite database is pretty straightforward in most cases — just make sure the SQLite binaries file exists anywhere you want and start to create, connect, and using the database. If you are looking for an embedded database for your projects or solutions, SQLite is definitely worth considering.

(SQLite 是一個開源的嵌入式關係資料庫,實現自包容、零配置、支持事務的SQL資料庫引擎。其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,SQLite 的安裝和運行非常簡單,在大多數情況下 - 只要確保SQLite的二進位文件存在即可開始創建、連接和使用資料庫。如果您正在尋找一個嵌入式資料庫項目或解決方案,SQLite是絕對值得考慮。[紅薯 譯])

2. Installation

SQLite on Windows

  1. Navigate to SQLite download page at http://www.sqlite.org/download.html
  2. Download the following Precompiled Binaries For Windows:
    • sqlite-shell-win32-x86-<build#>.zip
    • sqlite-dll-win32-x86-<build#>.zip
    Note: <build#> is the running build number of sqlite.
  3. Unpack the ZIP files into your favourite folder. Add folder path to the PATH system variable to make the SQLite command line shell available within the environment.
  4. OPTIONAL: If you plan to develop any application that host a sqlite database then you will need to download the source code in order to compile and utilize its API .
    • sqlite-amalgamation-<build#>.zip

SQLite on Linux
SQLite binaries can be obtained in a variety of ways depending on the Linux distro that you are using.

/* For Debian or Ubuntu /*
$ sudo apt-get install sqlite3 libsqlite3-dev

/* For RedHat, CentOS, or Fedora/*
$ yum install SQLite3 libsqlite3-dev

SQLite on Mac OS X
If you are running a Mac OS Leopard or later, then it alraedy have pre-installed SQLite.

3. Create you first SQLite Database

you now should have the SQLite binaries ready and time to create your first SQLite database now. Type the following command in windows’s command prompt or Linux’s terminal.

To create a new database called test.db:

sqlite3 test.db

To create a table in the database:

sqlite> create table mytable(id integer primary key, value text);

2 columns were created.A primary key column called “id” which has the ability to automatically generate value by default and a simple text field called “value”.

NOTE: At least 1 table or view need to be created in order to commit the new database to disk. Otherwise, it won’t database won’t be created.

To insert data into mytable:

sqlite> insert into mytable(id, value) values(1, 'Micheal');
sqlite> insert into mytable(id, value) values(2, 'Jenny');
sqlite> insert into mytable(value) values('Francis');
sqlite> insert into mytable(value) values('Kerk');

To fetch data from mytable:

sqlite> select * from mytable;
1|Micheal
2|Jenny
3|Francis
4|Kerk

To fetch data from mytable by improving the formatting a little:

sqlite> .mode column
sqlite> .header on
sqlite> select * from mytable;
id          value
----------- -------------
1           Micheal
2           Jenny
3           Francis
4           Kerk

The .mode column will display data into column format.
The .header on will display table’s column name.

To add additional column into mytable:

sqlite> alter table mytable add column email text not null '' collate nocase;

To create a view for mytable:

sqlite> create view nameview as select * from mytable;

To create an index for mytable:

sqlite> create index test_idx on mytable(value);

4. Useful SQLite’s command

Display table schema:

sqlite> .schema [table]

Retrieve a list of tables (and views):

sqlite> .tables

Retrieve a list indexes for a given table:

sqlite> .indices [table]

Export database objects to SQL format:

sqlite> .output [filename]
sqlite> .dump
sqlite> .output stdout

Import database objects(SQL format) to database:

sqlite> .read [filename]

Formatting exported data into CSV format:

sqlite>.output [filename.csv]
sqlite>.separator ,
sqlite> select * from mytable;
sqlite>.output stdout

Import CSV formatted data to a new table:

sqlite>create table newtable(id integer primary key, value text);
sqlite>.import [filename.csv] newtable

To backup database:

/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql

To restore database:

/* usage: sqlite3 [database] < [filename] */
sqlite3 mytable.db < backup.sql

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • MySQL中的註釋 MySQL中的註釋有三種: # 註釋內容 -- 註釋內容 /* 註釋內容*/ 但是,在導出的SQL文件中,也會看到類似如下內容的註釋: 1 CREATE DATABASE `blog` /*!40100 DEFAULT CHARACTER SET latin1 */; 其中的 /
  • 安裝依賴: CentOS: # yum -y install wget gcc-c++ cmake make bison ncurses-devel perl unzip Ubuntu:(使用ubuntu下麵有不少需要root許可權,請註意) 複製代碼 代碼如下: # sudo apt-get ins
  • 多表通用的SQL存儲過程分頁 USE [EmailCenter] GO /****** Object: StoredProcedure [dbo].[Common_PageList] Script Date: 2016/2/29 11:00:19 ******/ SET ANSI_NULLS ON
  • 目錄: 讀取數據 索引 選擇數據 簡單運算 聲明,本文引用於:https://www.dataquest.io/mission/8/introduction-to-pandas (建議閱讀原文) Pandas使用一個二維的數據結構DataFrame來表示表格式的數據,相比較於Numpy,Pandas...
  • 在hadoop開發或者使用中,可能會使用到一些插件或3方軟體,比如:Eclipse的Hadoop插件,ETL的Kettle。那麼就存在一個hdfs目錄許可權的問題。 下麵就這個許可權問題進行闡述。
  • 很少寫操作資料庫的東西,現在想做一個mysql的hash庫,遇到了很多困難,比想像的要多,同時也學到不少東西 MYSQL資料庫的認證密碼,有兩種,4.1之前是MYSQL323加密,4.1和之後的版本都是MYSQLSHA1加密,下麵的兩個函數是MYSQL自帶的,可以在資料庫里直接操作 SELECT O
  • 在資料庫上,你創建了索引,卻發現索引沒有被使用到。 很大程度上,是由於自己在寫sql語句的時候,沒有正確方式。 有幾種情況可能導致索引沒有被使用: 1、在索引行使用null,is null等判斷條件。 2、在索引行使用<>判斷語句,會導致全文快速索引。 3、在where查詢條件中,索引行使用函數進行
  • 1.對查詢進行優化,應儘量避免全表掃描,首先應考慮在 where 及 order by 涉及的列上建立索引。 2.應儘量避免在 where 子句中對欄位進行 null 值判斷,否則將導致引擎放棄使用索引而進行全表掃描,如: select id from t where num is null 可以在
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...