Tamás Gulácsi

Results 146 comments of Tamás Gulácsi

Just use gopkg.in/goracle.v2, that's maintained! BTW, you haven't stated what's your problem with the given code...

Sorry, no idea - this should work. Can you try gopkg.in/goracle.v2 ? Just blank import it (import _ "gopkg.in/goracle.v2") instead of gopkg.in/rana/ora.v4 and use ``` db, err := sql.Open("goracle", "...")...

rana/ora is abandoned. Use gopkg.in/goracle.v2 https://docs.oracle.com/cd/B14117_01/server.101/b10785/jm_exmpl.htm shows how to do what you want in pl/sql. On Wed, Jul 31, 2019 at 7:11 AM +0200, "sinys15" wrote: Hello, Could you please...

Sure, why not? But rana/ora is unmaintained. Want to be a maintainer? On Mon, Nov 11, 2019 at 3:35 PM +0100, "Tkk" wrote: ses.PrepAndQry() cause ses.Lock, ses.Break() cause the same...

What is the query? Please show us the relevant code?

Use gopkg.in/goracle.v2 It's simpler and maintained. ATM rana/ora is abandoned. On Fri, Sep 20, 2019 at 9:49 AM +0200, "GaganTM" wrote: func GetPoLineDeatils(poheaderid float64) []POLineDeatils { var polinedata []POLineDeatils env,...

Don't know. Can you try to use gopkg.in/goracle.v2 ? That's maintained, gopkg.in/rana/ora.v4 is not. Mehrdod Odilzoda ezt írta (időpont: 2018. szept. 19., Sze, 16:18): > I'm getting some cursor, which...

You can use `goracle.WrapRows` to create a `database/sql.Rows` which can be used just as a regular `Rows`, with its `Scan` method - no need to find out the columns' types...

See https://github.com/go-goracle/goracle/issues/101