Browse Source

reinstate DB_CONN_STR

chrisfarms 12 years ago
parent
commit
12f7781cfd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      go/src/hello/hello.go

+ 1 - 1
go/src/hello/hello.go

@@ -21,7 +21,7 @@ type World struct {
 }
 
 const (
-	DB_CONN_STR   = "root@tcp(127.0.0.1:3306)/hello_world?charset=utf8"
+	DB_CONN_STR   = "benchmarkdbuser:benchmarkdbpass@tcp(172.16.98.98:3306)/hello_world?charset=utf8"
 	DB_SELECT_SQL = "SELECT id, randomNumber FROM World where id = ?"
 	DB_ROWS       = 10000
 	MAX_CON       = 100