11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Go】Sqlite3の利用方法

Last updated at Posted at 2020-01-03

##1. Sqlite3のインストール

Windowsならば下記サイトよりSqliteをダウンロードします。
https://www.sqlite.org/download.html
「sqlite-tools-win32-x86-3300100.zip」をダウンロードしてインストールします。

Macならば、下記コマンドを実行してください。
brew install sqlite

##2. gccのインストール方法
sqliteはC言語で開発されているため、gccが必要です。

Windowsの場合、下記よりTDM-gccをダウンロードしてインストールします。
http://tdm-gcc.tdragon.net/download

Macならば、Xcodeをダウンロードしてインストール後、下記コマンドを実行してください。
xcode-select --install

これでgccが利用できるようになります。

##3. go-sqlite3を取得する
コマンドラインで次を実行します。
go get github.com/mattn/go-sqlite3
インストールするとGoでSqliteが利用できるようになります。

##4. Goでsqliteを利用する

package main

import (
	"database/sql"

	_ "github.com/mattn/go-sqlite3"
)

var DbConnection *sql.DB

func main() {
	DbConnection, _ := sql.Open("sqlite3", "./example.sql") //接続開始(example.sqlに保存する)
	defer DbConnection.Close()                              //最後は確実にクローズする。

	//この下に、CREATE文 SELECT文 INSERT文 UPDATE文 DELETE文を記載する

}
11
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?