2. Database
Go doesn't provide any database drivers, but it does have a driver interface defined in the
database/sql package
The advantage is that if your code is developed according to these interface standards, you will not
need to change any code if your database changes.
We always see the following code when we use third-party drivers:
Import (
"database/sql"
_ "github.com/mattn/go-sqlite3"
)
Here the underscore (also known as a 'blank') _:
_ 動畛c d湛ng trong c叩c hm (func) l炭c tr畉 v畛 c叩c gi叩 tr畛 m ch炭ng ta kh担ng c畉n th狸 ch炭ng ta s畉 lo畉i b畛 n坦 (discarding)
Khi b畉n import m畛t th動 vi畛n th狸 b畉n s畉 ph畉i d湛ng t畉t c畉 c叩c package 坦 (n畉u kh担ng d湛ng package 坦 trong o畉n code no 坦 th狸 Go
s畉 bi棚n d畛ch v c畉nh b叩o l畉i).
khi s畛 d畛ng underscore _ khi import th動 vi畛n th狸 c坦 ngh挑a l b畉n ch畛 c畉n d湛ng function init() m kh担ng c畉n s畛 d畛ng tr畛c ti畉p
t鱈nh nng ny c畉n thi畉t cho registering database drivers v狸 n坦 s畉 t畛 畛ng ng k箪 database drivers m kh担ng c畉n ph畉i g畛i n坦
3. Database
Function:
sql.Register(): registering database drivers when you use
third-party database drivers.
G畛i hm ny trong hm init()
driver.Driver: is an interface containing an Open(name
string) method that returns a Conn interface.
driver.Conn: This is a database connection interface with
some methods the same Conn can only be used in one goroutine.
driver.Stmt
driver.Tx
4. Database
Quy tr狸nh:
Step 0: Importing a Database Driver
L y package:畉
go get github.com/go-sql-driver/mysql
Import trong m達 ngu n畛
import (
"database/sql"
_ "github.com/go-sql-driver/mysql"
)
5. Database
Quy tr狸nh:
Step 1: s d ng畛 畛 sql.Open chu n b k t n i畛 畉 畛 畉 畛
db, err := sql.Open(<driver name>, <command_to_connect>)
<command_to_connect>: driver-specific syntax that tells the driver how to
access the underlying datastore
Gi叩 tr tr v : c n ki m tra畛 畉 畛 畉 畛 handle errors
V鱈 d :畛
db, err := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/hello")
db, err := sql.Open("mysql", "<user>:<password>@/test?charset=utf8")
Sql.Open ch a t o k t n i ngay動 畉 畉 畛
N坦 t o k t n i ch khi no c坦 y棚u c u (query) u ti棚n.畉 畉 畛 畛 畉 畉
db.Ping() d湛ng ki m tra database is available and accessible (for畛 畛
example, check that you can establish a network connection and log in)
6. Database
Quy tr狸nh:
Step 2: T o m i d li u, g m 3 b c:畉 畛 畛 畛 畛 動畛
stmt, err := db.Prepare(<command>): chu n b nh d ng d li u ch竪n vo DB畉 畛 畛 畉 畛 畛 畛
returns a SQL operation that is going to be executed. It also returns the execution status after executing SQL.
db l gi叩 tr tr v t hm slq.Open()畛 畉 畛 畛
V鱈 d : db.Prepare("INSERT userinfo SET畛 username=?,departname=?,created=?")
res, err := stmt.Exec(<data>): th c hi n l nh畛 畛 畛
Stmt l gi叩 tr tr v t hm db.Prepare()畛 畉 畛 畛
<data>: l m u chu n theo th t 達 x叩c nh tr棚n b c chu n b tr棚n畉 畉 畛 畛 畛 動畛 畉 畛
V鱈 d : stmt.Exec("astaxie", "a72", "2016-12-09") tu但n theo chu n <username,departname,created> tr棚n畛 畉 畛
res.<Action>: c gi叩 tr tr v sau khi th c hi n l nh畛 畛 畉 畛 畛 畛 畛
res l gi叩 tr tr v t hm畛 畉 畛 畛 stmt.Exec()
C坦 c叩c Action kh叩c nhau:
id, err := res.LastInsertId()
affect, err := res.RowsAffected()
7. Database
Quy tr狸nh:
Step 3: Truy v n t狸m ki m d li u畉 畉 畛 畛
L nh truy v n:畛 畉 db.Query(<command_to_query>)
rows, err := db.Query("SELECT * FROM userinfo")
Duy t danh s叩ch tr v :畛 畉 畛
rows.Next():
rows.Scan(): read the columns in each row into variables
defer rows.Close(): 坦ng rows
for rows.Next() { l y l n l t c叩c row tr v畉 畉 動畛 畉 畛
err = rows.Scan(&uid, &username, &department, &created)
}
8. Database
Quy tr狸nh:
Step 4: X坦a d li u (t ng t nh Step2)畛 畛 動董 畛 動
stmt, err = db.Prepare(<command_to_del>)
<command_to_del>: l l nh mysql x坦a d li u畛 畛 畛 畛
stmt, err = db.Prepare("delete from userinfo where uid=?")
res, err = stmt.Exec(id)
Stmt thi u gi叩 tr d li u畉 畛 畛 畛 id n棚n l nh ny a id vo v th c thi畛 動 畛
l nh x坦a畛
affect, err = res.RowsAffected()
Note that we use the format =? to pass arguments. This
is necessary for preventing SQL injection attacks.
9. Database
V鱈 d c DB Mysql:畛 畛
K t n i:畉 畛
db, err := sql.Open("mysql", "astaxie:astaxie@/test?charset=utf8")
db.Close()
Ghi d li u:畛 畛
stmt, err := db.Prepare("INSERT userinfo SET username=?,departname=?,created=?")
res, err := stmt.Exec("jace", "jace in corp", "2015-12-09")
id, err := res.LastInsertId() ki m ch ng l n ghi d li u v a r i畛 畛 畉 畛 畛 畛 畛
C p nh p/S a d li u畉 畉 畛 畛 畛
stmt, err = db.Prepare("update userinfo set username=? where uid=?")
res, err = stmt.Exec("astaxieupdate", id)
affect, err := res.RowsAffected() ki m ch ng l nh update c坦 炭ng i t ng (rows)畛 畛 畛 畛 動畛
T狸m ki m d li u:畉 畛 畛
rows, err := db.Query("SELECT * FROM userinfo")
for rows.Next() {err = rows.Scan(&uid, &username, &department, &created)}
X坦a d li u:畛 畛
stmt, err = db.Prepare("delete from userinfo where uid=?")
res, err = stmt.Exec(id) th c thi l nh x坦a畛 畛
affect, err = res.RowsAffected() ki m ch ng l nh x坦a c坦 炭ng i t ng kh担ng畛 畛 畛 畛 動畛
10. Database
Lm vi c v i Redis畛 畛
redis is a key-value storage system like Memcached, that
supports the string, list, set and zset(ordered set) value types.
Download: http://redis.io/download
Ci t v th nghi m:畉 畛 畛
Ch y server: src/redis-server畉
T ng t叩c, thao t叩c d li u v i server: src/redis-cli動董 畛 畛 畛
set foo bar
get foo
L y th vi n database driver:畉 動 畛
go get github.com/astaxie/goredis
11. Database
Lm vi c v i Redis畛 畛
C叩c th vi n giao ti p v i redis:動 畛 畉 畛
https://github.com/fzzy/radix
https://github.com/alphazero/Go-Redis
Current status is compatible with Redis 2.4.n (2.4.9 tested) and Go 1
達 l但u kh担ng c坦 b n c p nh t畉 畉 畉
https://github.com/simonz05/godis b n c p nh t 達 kh叩 c滴 (2012)畉 畉 畉
https://github.com/hoisie/redis Designed for Redis 2.6.x.
https://github.com/garyburd/redigo
B n m i nh t vo Th叩ng 5/2016畉 畛 畉
12. Database
Lm vi c v i Redis:畛 畛
M t s v鱈 d t ng t叩c v i Redis:畛 畛 畛 動董 畛
https://github.com/ovr/go-redis
https://github.com/wen866595/gredis
https://github.com/hongruiqi/redis.go
13. cookies
Cookies g m c叩c tr ng:畛 動畛
Name: string
Value: string
Path: string
Domain: string
Expires: time.Time
RawExpires: string
MaxAge: int
Secure: bool
HttpOnly: bool
Raw: string
Unparsed: []string
Go uses the SetCookie function in the net/http package to set cookies:
http.SetCookie(w ResponseWriter, cookie *Cookie)
Hm ny c坦 th d湛ng cho c 2 tr ng h p t o cookies v x坦a cookies.畛 畉 動畛 畛 畉
14. cookies
func login(w http.ResponseWriter, r *http.Request) {
SetCookie(w)
}
login l 1 Handler c a web.畛
Hm Setcookie s d ng ReponseWriter tr v cho client畛 畛 畛 畉 畛
func sayhelloName(w http.ResponseWriter, r *http.Request) {
GetCookie(r)
}
sayhelloName l 1 Handler c a web畛
Hm Getcookie s d ng Request do nh n c叩c th担ng s t client畛 畛 畉 畛 畛
17. Network service
we need an IP address and port number to have a unique socket.
TCP socket
TCPConn struct m担 t 1 k t n i socket.畛 畉 畉 畛
TCPConn can be used by either client or server for reading and writing data.
after a connection is established, the server has the same type of connection object for the
current connection c ph鱈a client v server c湛ng c坦 1 object m担 t k t n i.畉 畛 畉 畉 畛
clients send requests to servers through a TCPConn and receive information from the server
response
servers read and parse client requests, then return feedback
two key functions:
func (c *TCPConn) Write(b []byte) (n int, err os.Error)
func (c *TCPConn) Read(b []byte) (n int, err os.Error)
TCPAddr struct to represent TCP address information:
ResolveTCPAddr function to get a TCPAddr
18. Network service
T o k t n i TCP:畉 畉 畛
DialTCP function in the net package to create a
TCP connection
returns a TCPConn object
func DialTCP(net string, laddr, raddr *TCPAddr) (c
*TCPConn, err os.Error)
19. Tham kh o畉
https://github.com/suyesh/go_training