這是備份網站。主網站位於http://www.dotblogs.com.tw/mis2000lab/
MIS2000 Lab's ASP.NET & Linux (Trad. Chinese 正體中文;Big5)。這個網站,是我們(MIS2000 Lab.資訊工作室)多年教學的實際心得與上課範例,有ASP.NET程式設計,也有Linux的相關文件。
編輯。
您也可以直接參觀主網站
MIS2000 Lab. is MVP 2008-2017/7/1 for ASP/ASP.NET.
2017年1月16日 星期一
從零開始 - 學習Go語言(Golang)與 MS SQL Server,資源彙整
從零開始 - 學習Go語言(Golang)與 MS SQL Server,資源彙整
Golang原廠、官方網站
https://golang.org/
下載與安裝 (MS Windows / Apple OS X / Linux)
https://golang.org/dl/
....................................................................................................
Golang 與 MS SQL Server
各種資料庫的 Go驅動程式 https://github.com/golang/go/wiki/SQLDrivers
https://github.com/golang/go/wiki/SQLDrivers
MS ADODB: https://github.com/mattn/go-adodb
MS SQL Server (pure go): https://github.com/denisenkom/go-mssqldb
MS SQL Server (uses cgo): https://github.com/minus5/gofreetds
....................................................................................................
Golang 連結 MS SQL Server(簡體中文)
http://blog.csdn.net/codyguo/article/details/51014450 (原文出處)
http://studygolang.com/articles/6549 (備份)
....................................................................................................
SQL指令 與 參數(避免SQL Injection 資料隱碼攻擊)
https://github.com/denisenkom/go-mssqldb
db.QueryContext(ctx, `select * from t where ID = @ID;`, sql.Named("ID", 6))
db.Query("SELECT * FROM t WHERE a = ?3, b = ?2, c = ?1", "x", "y", "z")
?3表示第三個參數的值,所以是「z」
執行成果 SELECT * FROM t WHERE a = 'z', b = 'y', c = 'x'
....................................................................................................
入門文章與其他:
初學 Golang 30 天 (2014年的文章)
http://ithelp.ithome.com.tw/users/20079210/ironman/721
Golang - 實作 ORM 與 Form 綁定,自動新增、更新資料庫內容
http://blog.cgmlife.net/posts/2015/03/24/golang-orm-update-database-automatically-through-form-value
Golang原廠、官方網站
https://golang.org/
下載與安裝 (MS Windows / Apple OS X / Linux)
https://golang.org/dl/
....................................................................................................
Golang 與 MS SQL Server
各種資料庫的 Go驅動程式 https://github.com/golang/go/wiki/SQLDrivers
https://github.com/golang/go/wiki/SQLDrivers
MS ADODB: https://github.com/mattn/go-adodb
MS SQL Server (pure go): https://github.com/denisenkom/go-mssqldb
MS SQL Server (uses cgo): https://github.com/minus5/gofreetds
....................................................................................................
Golang 連結 MS SQL Server(簡體中文)
http://blog.csdn.net/codyguo/article/details/51014450 (原文出處)
http://studygolang.com/articles/6549 (備份)
....................................................................................................
SQL指令 與 參數(避免SQL Injection 資料隱碼攻擊)
https://github.com/denisenkom/go-mssqldb
db.QueryContext(ctx, `select * from t where ID = @ID;`, sql.Named("ID", 6))
db.Query("SELECT * FROM t WHERE a = ?3, b = ?2, c = ?1", "x", "y", "z")
?3表示第三個參數的值,所以是「z」
執行成果 SELECT * FROM t WHERE a = 'z', b = 'y', c = 'x'
....................................................................................................
入門文章與其他:
初學 Golang 30 天 (2014年的文章)
http://ithelp.ithome.com.tw/users/20079210/ironman/721
Golang - 實作 ORM 與 Form 綁定,自動新增、更新資料庫內容
http://blog.cgmlife.net/posts/2015/03/24/golang-orm-update-database-automatically-through-form-value
訂閱:
文章 (Atom)