ora
ora copied to clipboard
An Oracle database driver in Go.
Hi, Recently I download last version of ora driver. But It very difficult, work with documentation and examples, exists an overload and mix versions that overwhelms :( It's posible clean...
Hey, Is there any way to return values from stored procedures using the standard `database/sql` API? We're using packages such `sqlx` that expects the standard sql interface, Thanks.
Hello! I have spent some time researching this, reading the code, and even delving into the driver. Hopefully I am not just being an idiot. Background: I have a suite...
Code: l := &ora.Lob{} stm, err := testSes.Prep(`begin :1 := null; end;`) if err != nil { fmt.Println("2 - ", err) return } n, err := stm.Exe(l) if err !=...
Code: v0 := float64(0.123) s := fmt.Sprintf("SELECT %v FROM DUAL", v0) fmt.Println(s) rset, err := ses.PrepAndQry(s) if err != nil { fmt.Println("1 - ", err) return } for rset.Next() {...
When running a go application that uses ora package I get the following error: go run main.go dyld: Library not loaded: @rpath/libclntsh.dylib.12.1 Referenced from: /var/folders/pq/3mmbt99n59q96n5x8yycmmy40000gn/T/go-build695973967/command-line-arguments/_obj/exe/main Reason: image not found signal:...
get an error when execute go build SET GOOS=linux SET GOARCH=386 SET CGO_ENABLED=1 SET CXX=mingw32-g++ SET CC=mingw32-c++ # gopkg.in/rana/ora.v3 ..\gopkg.in\rana\ora.v3\conn.go:51: undefined: Env ..\gopkg.in\rana\ora.v3\conn.go:52: undefined: Ses ..\gopkg.in\rana\ora.v3\pool.go:63: undefined: Env ..\gopkg.in\rana\ora.v3\pool.go:64: undefined:...
if column have ```INTEGER``` type, then in result set it has type ```ora.OCINum``` But if column just ```NUMBER```, then result type ```float64``` (as i understand this default behavior). This expected...
Hello, Sir! My database has some CLOBs and it seems like this problem occurs when the CLOBs are over a certain size or contain Norwegian special characters,- since I do...
Hi team, Not really an issue, but anyone tried building windows executable statically linking required oracle dll or libs? To put simply, build an executable that runs without the required...