1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
This commit is contained in:
Yasuhiro Matsumoto
2017-06-09 08:59:49 +09:00
parent 0da307f15d
commit 5d10070d3f
4 changed files with 27 additions and 19 deletions

View File

@ -9,11 +9,13 @@ import (
_ "github.com/denisenkom/go-mssqldb"
)
var server = "localhost"
var port = 1433
var user = "sa"
var password = "your_password"
var database = "SampleDB"
var (
server = "localhost"
port = 1433
user = "sa"
password = "your_password"
database = "SampleDB"
)
// Delete an employee from database
func ExecuteAggregateStatement(db *sql.DB) {