2019-08-07 07:19:49 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-15 15:03:58 +00:00
|
|
|
go get -d github.com/ibmdb/go_ibm_db
|
2019-08-07 07:19:49 +00:00
|
|
|
export DB2HOME=$GOPATH/src/github.com/ibmdb/go_ibm_db/installer
|
|
|
|
cur="$PWD"
|
|
|
|
cd $DB2HOME && go run setup.go
|
|
|
|
export CGO_CFLAGS=-I$DB2HOME/include
|
|
|
|
export CGO_LDFLAGS=-L$DB2HOME/lib
|
|
|
|
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$DB2HOME/clidriver/lib
|
|
|
|
cd $cur
|
2019-11-18 01:39:01 +00:00
|
|
|
go test -db=go_ibm_db -tags=db2 -conn_str="HOSTNAME=localhost;DATABASE=testdb;PORT=50000;UID=db2inst1;PWD=123#2@23"
|