Using go-oci8 library as oracle-go connector
up vote
-1
down vote
favorite
I followed these steps:
go get -d -u github.com/mattn/go-oci8
cd $GOPATH/src/github.com/mattn/go-oci8
go build
I am getting this error :
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:271: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:357: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:391: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/statement.go:373: undefined: C in C.OCI_DTYPE_PARAM
Is this a bug or am I missing something?
go
add a comment |
up vote
-1
down vote
favorite
I followed these steps:
go get -d -u github.com/mattn/go-oci8
cd $GOPATH/src/github.com/mattn/go-oci8
go build
I am getting this error :
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:271: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:357: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:391: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/statement.go:373: undefined: C in C.OCI_DTYPE_PARAM
Is this a bug or am I missing something?
go
1
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and thego build
step worked fine. I'll see if I can break it to get your particular problem
– Vorsprung
Nov 8 at 14:53
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I followed these steps:
go get -d -u github.com/mattn/go-oci8
cd $GOPATH/src/github.com/mattn/go-oci8
go build
I am getting this error :
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:271: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:357: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:391: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/statement.go:373: undefined: C in C.OCI_DTYPE_PARAM
Is this a bug or am I missing something?
go
I followed these steps:
go get -d -u github.com/mattn/go-oci8
cd $GOPATH/src/github.com/mattn/go-oci8
go build
I am getting this error :
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:271: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:357: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/rows.go:391: undefined: C in C.OCI_DTYPE_PARAM
/home/cohesity/workspace/restricted/.go/src/github.com/mattn/go-oci8/statement.go:373: undefined: C in C.OCI_DTYPE_PARAM
Is this a bug or am I missing something?
go
go
edited Nov 8 at 11:34
Carlos Gonzalez
411411
411411
asked Nov 8 at 11:17
Samayra Goyal
12
12
1
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and thego build
step worked fine. I'll see if I can break it to get your particular problem
– Vorsprung
Nov 8 at 14:53
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39
add a comment |
1
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and thego build
step worked fine. I'll see if I can break it to get your particular problem
– Vorsprung
Nov 8 at 14:53
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39
1
1
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and the
go build
step worked fine. I'll see if I can break it to get your particular problem– Vorsprung
Nov 8 at 14:53
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and the
go build
step worked fine. I'll see if I can break it to get your particular problem– Vorsprung
Nov 8 at 14:53
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
draft saved
draft discarded
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53206682%2fusing-go-oci8-library-as-oracle-go-connector%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
you don't have the Oracle instant client installed. The go lang bindings depend on a C language library supplied by Oracle
– Vorsprung
Nov 8 at 11:28
I have installed the oracle instant client , I followed these steps: novalagung.com/go-oci8-oracle-linux For the C language library , what should I do ?
– Samayra Goyal
Nov 8 at 12:02
I followed your instructions - albeit using Oracle Linux 7 and not Ubuntu and the
go build
step worked fine. I'll see if I can break it to get your particular problem– Vorsprung
Nov 8 at 14:53
tried a few things but couldn't reproduce
– Vorsprung
Nov 8 at 15:31
I got the problem , mine was go 1.7 version, I have written to them and poast which they have updated the readme with 1.7 prerequisite
– Samayra Goyal
Nov 10 at 20:39