ora icon indicating copy to clipboard operation
ora copied to clipboard

An Oracle database driver in Go.

Results 44 ora issues
Sort by recently updated
recently updated
newest added

table: create table blob_sample( id integer, payload blob); gopkg.in/rana/ora.v4 func fatal(err error){ if err !=nil{ log.Fatal(err) } } func testOracle(){ db ,err := sql.Open("ora","user/pwd@//127.0.0.1:1521/orcltest") fatal(err) defer db.Close() err = db.Ping()...

go get -x gopkg.in/rana/ora.v4 WORK=C:\Users\vijay\AppData\Local\Temp\go-build685355070 mkdir -p $WORK\gopkg.in\rana\ora.v4\_obj\ mkdir -p $WORK\gopkg.in\rana\ cd F:\SEARCHBLOX\searchblox\src\gopkg.in\rana\ora.v4 pkg-config --cflags oci8 pkg-config --libs oci8 CGO_LDFLAGS="-g" "-O2" "-LC:instantclient_12_2sdklibmsvc" "-LC:mingw64lib" "-loci" "C:\\Go\\pkg\\tool\\windows_amd64\\cgo.exe" -objdir "C:\\Users\\vijay\\AppData\\Local\\Temp\\go-build685355070\\gopkg.in\\rana\\ora.v4\\_obj\\" -importpath gopkg.in/rana/ora.v4 --...

Hi, I am using database/sql package with oracle driver (“gopkg.in/rana/ora.v4”), when I am inserting the data, it’s LastInsertId Method is returning 0, while data is successfully inserted. Attaching code. import...

on creating orav4 connection using sql.Open(..) , i was concerned about the number of open connections , i saw there was more than 40 connections showing on creating & using...

When I deal with *ora.Rset, for `switch vtype := row[j].(type)`, I found that neither `time.Time` nor `string`, it's value is unpredictable, which is not right and dangerous. My code appears...

found a bug in parameter binding: this works fine ``` rset, err := session.PrepAndQry("select :1 as \"p1\", :2 as \"p2\", :1 as \"p1-again\" from dual ", "v-1" , "v-2") ```...

## ENV: go version 1.8.1 linux/amd64 ## My program crashed and I found these in log file Errors in file : OCI-21500: internal error code, arguments: [17177], [0x000000000], [], [],...

Hi, when executing: ``` l := &ora.Time{} stm, err := ses.Prep(`begin :1 := null; end;`) _, err = stm.Exe(l) fmt.Println("Result - ", l.IsNull, l.Value) ``` l.IsNull is false but should...

Hi! Another trouble :) I'm calling the same stored procedure for a number of times. The first 374 runs are OK, but on the run 375 it fails with ORA-28112...