際際滷

際際滷Share a Scribd company logo
Golang
Web
Database
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坦
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
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"
)
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)
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()
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)
}
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.
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畛 畛 畛 畛 動畛
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
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畉 畛 畉
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
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.畛 畉 動畛 畛 畉
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畛 畛 畉 畛 畛
cookies
func SetCookie(res http.ResponseWriter) {
expiration := time.Now().Add(365 * 24 * time.Hour)
cookie := http.Cookie{
Name: "my-cookie",
Value: "COOKIE MONSTER",
Expires: expiration}
http.SetCookie(res, &cookie)
}
func GetCookie(req *http.Request) {
cookie, err := req.Cookie("my-cookie")
if err == nil {
fmt.Println("has cookie")
fmt.Println("get cookie")
fmt.Println(cookie)
fmt.Println(cookie.Value)
fmt.Println(cookie.Expires)
} else{
fmt.Println("please set cookie")
fmt.Println(err)
}
}
func ClearCookie(res http.ResponseWriter) {
cookie := http.Cookie{
Name: "my-cookie",
Value: "COOKIE MONSTER",
MaxAge: -1}
http.SetCookie(res, &cookie)
}
Session
 https://github.com/MorpheusXAUT/eveauth
 C坦 c叩c th vi n c n thi t v thao t叩c session動 畛 畉 畉 畛
 https://github.com/icza/session
 Th vi n v i c叩c ch ng nng qu n l箪 session kh叩動 畛 畛 畛 畉
h u d ng畛 畛
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
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)
Tham kh o畉
 https://github.com/suyesh/go_training

More Related Content

Similar to Golang web database3 (20)

B叩o c叩o tu畉n 畛 叩n
B叩o c叩o tu畉n 畛 叩nB叩o c叩o tu畉n 畛 叩n
B叩o c叩o tu畉n 畛 叩n
L動u Vi畛t T湛ng
Giao trinh java script
Giao trinh java scriptGiao trinh java script
Giao trinh java script
Ton Tr畉n M畉nh
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉nL畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
Son Nguyen
Map reduce hdfs
Map reduce hdfsMap reduce hdfs
Map reduce hdfs
hoangnguyentien
Ki畉n th畛c c畉n thi畉t lm vi畛c
Ki畉n th畛c c畉n thi畉t lm vi畛cKi畉n th畛c c畉n thi畉t lm vi畛c
Ki畉n th畛c c畉n thi畉t lm vi畛c
manhvokiem
Javascript tong-hop a-z
Javascript tong-hop a-zJavascript tong-hop a-z
Javascript tong-hop a-z
Manhh Nguy畛n
Qtu.vn sql - chuong 7
Qtu.vn  sql - chuong 7Qtu.vn  sql - chuong 7
Qtu.vn sql - chuong 7
Hoang le Minh
E learning lab - Tim hieu Cake PHP
E learning lab - Tim hieu Cake PHPE learning lab - Tim hieu Cake PHP
E learning lab - Tim hieu Cake PHP
elearninglabvn
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto itChuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
bamboosky4991
Hadoop, HBase and Zookeeper at Tamtay
Hadoop, HBase and Zookeeper at TamtayHadoop, HBase and Zookeeper at Tamtay
Hadoop, HBase and Zookeeper at Tamtay
Eddie Bui
Javascript for php developer
Javascript for php developerJavascript for php developer
Javascript for php developer
Dang Tuan
Speaker dang minh tuan javascript for php developer
Speaker dang minh tuan   javascript for php developerSpeaker dang minh tuan   javascript for php developer
Speaker dang minh tuan javascript for php developer
AiTi Education
Python moi
Python moiPython moi
Python moi
Dp L
The Art of Readable Code - DongPV
The Art of Readable Code - DongPVThe Art of Readable Code - DongPV
The Art of Readable Code - DongPV
担ng 担
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 PythonBi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
dtmanh1
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: PythonBi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
dtmanh1
Technical note playframework_documentation_working with play - java_vn
Technical note playframework_documentation_working with play - java_vnTechnical note playframework_documentation_working with play - java_vn
Technical note playframework_documentation_working with play - java_vn
Asahina Infotech
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉nL畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
L畉p tr狸nh web v畛i c叩c c担ng ngh畛 ph畛 bi畉n
Son Nguyen
Ki畉n th畛c c畉n thi畉t lm vi畛c
Ki畉n th畛c c畉n thi畉t lm vi畛cKi畉n th畛c c畉n thi畉t lm vi畛c
Ki畉n th畛c c畉n thi畉t lm vi畛c
manhvokiem
Javascript tong-hop a-z
Javascript tong-hop a-zJavascript tong-hop a-z
Javascript tong-hop a-z
Manhh Nguy畛n
Qtu.vn sql - chuong 7
Qtu.vn  sql - chuong 7Qtu.vn  sql - chuong 7
Qtu.vn sql - chuong 7
Hoang le Minh
E learning lab - Tim hieu Cake PHP
E learning lab - Tim hieu Cake PHPE learning lab - Tim hieu Cake PHP
E learning lab - Tim hieu Cake PHP
elearninglabvn
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto itChuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
Chuy棚n 畛 ng担n ng畛 l畉p tr狸nh auto it
bamboosky4991
Hadoop, HBase and Zookeeper at Tamtay
Hadoop, HBase and Zookeeper at TamtayHadoop, HBase and Zookeeper at Tamtay
Hadoop, HBase and Zookeeper at Tamtay
Eddie Bui
Javascript for php developer
Javascript for php developerJavascript for php developer
Javascript for php developer
Dang Tuan
Speaker dang minh tuan javascript for php developer
Speaker dang minh tuan   javascript for php developerSpeaker dang minh tuan   javascript for php developer
Speaker dang minh tuan javascript for php developer
AiTi Education
Python moi
Python moiPython moi
Python moi
Dp L
The Art of Readable Code - DongPV
The Art of Readable Code - DongPVThe Art of Readable Code - DongPV
The Art of Readable Code - DongPV
担ng 担
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 PythonBi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Ng担n ng畛 Python
dtmanh1
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: PythonBi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
Bi gi畉ng ng担n ng畛 l畉p tr狸nh hi畛n nay: Python
dtmanh1
Technical note playframework_documentation_working with play - java_vn
Technical note playframework_documentation_working with play - java_vnTechnical note playframework_documentation_working with play - java_vn
Technical note playframework_documentation_working with play - java_vn
Asahina Infotech

Recently uploaded (20)

cac phuong phap dieu tri benh loang xuong
cac phuong phap dieu tri benh loang xuongcac phuong phap dieu tri benh loang xuong
cac phuong phap dieu tri benh loang xuong
hoalam0912
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
ZedHunter
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptxH畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
LmGia10
Giai-tich-22-Dai hoc bach khoa H N畛i.pdf
Giai-tich-22-Dai hoc  bach khoa H N畛i.pdfGiai-tich-22-Dai hoc  bach khoa H N畛i.pdf
Giai-tich-22-Dai hoc bach khoa H N畛i.pdf
NguyenMinhVuongTTTNT
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
Man_Ebook
BG- To chuc hoat dong giao duc STEM o truong pho thong.docx
BG- To chuc hoat dong giao duc STEM o truong pho thong.docxBG- To chuc hoat dong giao duc STEM o truong pho thong.docx
BG- To chuc hoat dong giao duc STEM o truong pho thong.docx
hientram5
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docxBI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
DrHeroway
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptxNhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
NguyenMinhVuongTTTNT
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
Nguyen Thanh Tu Collection
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docxBI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
DrHeroway
inbound5330737068677491425.pptxbnbvvvcvjjv
inbound5330737068677491425.pptxbnbvvvcvjjvinbound5330737068677491425.pptxbnbvvvcvjjv
inbound5330737068677491425.pptxbnbvvvcvjjv
ducthanh284147
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
HongHi91
tom tat ca lam sang benh ly sinh ly benh
tom tat ca lam sang benh ly sinh ly benhtom tat ca lam sang benh ly sinh ly benh
tom tat ca lam sang benh ly sinh ly benh
hoalam0912
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
levanbinhcongviec
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai UniversityKinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
ThaoanhNguyen19
Chuong4 Chien luoc tai chinh doanh nghiep
Chuong4 Chien luoc tai chinh doanh nghiepChuong4 Chien luoc tai chinh doanh nghiep
Chuong4 Chien luoc tai chinh doanh nghiep
k602114330005
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptxS畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
huynhquocanh18052004
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
222000278
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdfTC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
suphamnhat
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....pptBi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
levanbinhcongviec
cac phuong phap dieu tri benh loang xuong
cac phuong phap dieu tri benh loang xuongcac phuong phap dieu tri benh loang xuong
cac phuong phap dieu tri benh loang xuong
hoalam0912
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
Bi PPTX thuy畉t tr狸nh C叩c lo畉i x畉o 畉nh trong c畉t l畛p vi t鱈nh v bi畛n ph叩p kh畉...
ZedHunter
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptxH畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
H畛-TH畛NG-B畛-TH畛 v 畛ng d畛ng c畛a n坦-COMPLEMENT.pptx
LmGia10
Giai-tich-22-Dai hoc bach khoa H N畛i.pdf
Giai-tich-22-Dai hoc  bach khoa H N畛i.pdfGiai-tich-22-Dai hoc  bach khoa H N畛i.pdf
Giai-tich-22-Dai hoc bach khoa H N畛i.pdf
NguyenMinhVuongTTTNT
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
SKKN 畛ng d畛ng ph畉n m畛m Javalab trong d畉y h畛c ph畉n li棚n k畉t h坦a h畛c m担n Khoa h...
Man_Ebook
BG- To chuc hoat dong giao duc STEM o truong pho thong.docx
BG- To chuc hoat dong giao duc STEM o truong pho thong.docxBG- To chuc hoat dong giao duc STEM o truong pho thong.docx
BG- To chuc hoat dong giao duc STEM o truong pho thong.docx
hientram5
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docxBI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
BI GI畉NG SAU 畉I H畛C P XE GAN DO AMIP.docx
DrHeroway
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptxNhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
Nhiet Do _ Nhiet Giai _ Nhiet Luong.pptx
NguyenMinhVuongTTTNT
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
B畛 20 畛 THI MN TON - N THI NH GI NNG L畛C CHU畉N C畉U TRC 畛 MINH H畛A S...
Nguyen Thanh Tu Collection
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docxBI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
BI GI畉NG B畛NH PHNH GI畉N TH畛C QU畉N.docx
DrHeroway
inbound5330737068677491425.pptxbnbvvvcvjjv
inbound5330737068677491425.pptxbnbvvvcvjjvinbound5330737068677491425.pptxbnbvvvcvjjv
inbound5330737068677491425.pptxbnbvvvcvjjv
ducthanh284147
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
畉T N畛I KH QU畉N.pptx_TVU_Tr動畛ng Y d動畛c.
HongHi91
tom tat ca lam sang benh ly sinh ly benh
tom tat ca lam sang benh ly sinh ly benhtom tat ca lam sang benh ly sinh ly benh
tom tat ca lam sang benh ly sinh ly benh
hoalam0912
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
Bi 8- 畉ng vi棚n m畛i- T畛 ch畛c c董 s畛 c畛a 畉ng v c担ng t叩c x但y d畛ng 畉ng 畛 c董 s...
levanbinhcongviec
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai UniversityKinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
Kinh t畉 ch鱈nh tr畛 M叩c L棚nin Thuongmai University
ThaoanhNguyen19
Chuong4 Chien luoc tai chinh doanh nghiep
Chuong4 Chien luoc tai chinh doanh nghiepChuong4 Chien luoc tai chinh doanh nghiep
Chuong4 Chien luoc tai chinh doanh nghiep
k602114330005
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptxS畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
S畛 d畛ng ch畛 kh但u trong k畛 thu畉t 坦ng m畛 thnh b畛ng.pptx
huynhquocanh18052004
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
K畉 HO畉CH D畉Y H畛C CHNH T畉 L畛P hai quy tr狸nh d畉y h畛c ch鱈nh t畉
222000278
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdfTC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
TC1 bi 1 ti畉ng Hn t畛ng h畛p dnh cho ng動畛i Vi畛t Nam.pdf
suphamnhat
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....pptBi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
Bi 9- 畉ng vi棚n m畛i- kh担ng ng畛ng ph畉n 畉u .....ppt
levanbinhcongviec

Golang web database3

  • 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畛 畛 畉 畛 畛
  • 15. cookies func SetCookie(res http.ResponseWriter) { expiration := time.Now().Add(365 * 24 * time.Hour) cookie := http.Cookie{ Name: "my-cookie", Value: "COOKIE MONSTER", Expires: expiration} http.SetCookie(res, &cookie) } func GetCookie(req *http.Request) { cookie, err := req.Cookie("my-cookie") if err == nil { fmt.Println("has cookie") fmt.Println("get cookie") fmt.Println(cookie) fmt.Println(cookie.Value) fmt.Println(cookie.Expires) } else{ fmt.Println("please set cookie") fmt.Println(err) } } func ClearCookie(res http.ResponseWriter) { cookie := http.Cookie{ Name: "my-cookie", Value: "COOKIE MONSTER", MaxAge: -1} http.SetCookie(res, &cookie) }
  • 16. Session https://github.com/MorpheusXAUT/eveauth C坦 c叩c th vi n c n thi t v thao t叩c session動 畛 畉 畉 畛 https://github.com/icza/session Th vi n v i c叩c ch ng nng qu n l箪 session kh叩動 畛 畛 畛 畉 h u d ng畛 畛
  • 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

Editor's Notes

  • #5: import ( &amp;quot;database/sql&amp;quot; _ &amp;quot;github.com/go-sql-driver/mysql&amp;quot; )
  • #7: import ( &amp;quot;database/sql&amp;quot; _ &amp;quot;github.com/go-sql-driver/mysql&amp;quot; )
  • #8: import ( &amp;quot;database/sql&amp;quot; _ &amp;quot;github.com/go-sql-driver/mysql&amp;quot; )
  • #9: import ( &amp;quot;database/sql&amp;quot; _ &amp;quot;github.com/go-sql-driver/mysql&amp;quot; )
  • #15: M畛i 1 webserver ch畛 c坦 1 lo畉i handler n棚n c叩c hm l畉y v t畉o cookie th動畛ng 動a vo Package ho畉c Func 畛 g畛i t畛 b棚n trong c叩c Handler, ph畛c v畛 vi畛c ki畛m tra i畛u ki畛n cho c叩c Handler