是否可以从Go代码连接到h2数据库http://www.h2database.com
答案 0 :(得分:2)
根据http://www.h2database.com/html/advanced.html:
...它支持PostgreSQL网络协议......对PostgreSQL网络协议的支持是相当新的,应该被视为实验性的。它不应该用于生产应用。
因此github.com/lib/pq
驱动程序很有可能与h2一起使用。
答案 1 :(得分:1)
首先,您需要运行数据库服务器,允许通过TCP,PotgreSQL或Web从任何主机进行连接(我通过使用名为 runH2Server.sh 的Linux shell脚本完成此操作):
#!/bin/bash
export PATH=$PATH:/tmp/H2DB/jre1.8/bin
export CLASSPATH=/tmp/H2DB/DBServer:/tmp/H2DB/DBServer/h2.jar
java -classpath $CLASSPATH org.h2.tools.Server -webAllowOthers -tcpAllowOthers -pgAllowOthers -baseDir /tmp/H2DB/DBServer
运行脚本将产生以下输出:
# ./runH2Server.sh
Web Console server running at http://127.0.1.1:8082 (others can connect)
TCP server running at tcp://127.0.1.1:9092 (others can connect)
PG server running at pg://127.0.1.1:5435 (others can connect)
现在您的服务器已准备好进行客户端连接,您可以测试它将Web浏览器连接到指定的IP和端口,例如:http://192.168.1.130:8082/login.do
请务必下载Go postgres驱动程序表单“ github.com/lib/pq ”。
现在,从其他主机(或者如果您想要的话),您可以使用以下代码来测试您的连接:
package main
import (
"database/sql"
"fmt"
_ "github.com/lib/pq"
)
const (
host = "192.168.1.130"
port = 5435
user = "sa"
password = ""
dbname = "/tmp/H2DB/DBServer/test"
)
func main() {
psqlInfo := fmt.Sprintf("host=%s port=%d user=%s "+
"dbname=%s sslmode=disable", host, port, user, dbname)
db, err := sql.Open("postgres", psqlInfo)
if err != nil {
panic(err)
}
defer db.Close()
err = db.Ping()
if err != nil {
panic(err)
}
fmt.Println("Successfully connected!")
rows, err := db.Query("SHOW TABLES")
if err != nil {
panic(err)
}
fmt.Println("\n\n=== Tables in DB ===")
fmt.Printf("%10v | %15v\n", "tablename", "tableschema")
for rows.Next() {
var tablename string
var tableschema string
err = rows.Scan(&tablename, &tableschema)
if err != nil {
panic(err)
}
fmt.Printf("%10v | %15v\n", tablename, tableschema)
}
fmt.Println("\n\n=== Records in DB ===")
rows, err = db.Query("SELECT * FROM TEST ORDER BY ID")
if err != nil {
panic(err)
}
fmt.Printf("%10v | %15v\n", "ID", "NAME")
for rows.Next() {
var id int
var name string
err = rows.Scan(&id, &name)
if err != nil {
panic(err)
}
fmt.Printf("%10v | %15v\n", id, name)
}
}
运行它,您将得到以下输出:
C:\Go\PG_Client
λ go run PgDBClient.go
Successfully connected!
=== Tables in DB ===
tablename | tableschema
TEST | PUBLIC
=== Records in DB ===
ID | NAME
1 | Hello
2 | World
答案 2 :(得分:1)
我为Go开发了一个“本地” Apache H2数据库驱动程序。
https://domain-b.com/data.json
那天,我尝试使用Postgres接口,但是在诊断SQL语法中的错误时遇到了问题。
我想提供一种可以直接访问H2的TCP接口的纯替代方案。