Samy Sultan

Results 133 comments of Samy Sultan

hi @bobvawter when run test locally I get ``` Error: Received unexpected error: ORA-01938: IDENTIFIED BY must be specified for CREATE USER could not create user "src_11410_2" ``` I use...

I bypass the above error still getting error related to the testing files use postgresql as default db

I should fix this issue otherwise I will return back to one thread model

last commit I fix regression occur in data integrety and test the code locally no DATA RACE would you please make another test

would you please test again (last commit) I fix nearly all possible cause of data race I think now it is clean

I use the following code to produce the error ```golang db, err := getDB() if err != nil { t.Error(err) return } defer func() { err = db.Close() if err...

the issue is old related to context (timeout and cancel). driver should stop the current operation once timeout occur or cancel called 1- previous solution using read/write SetDeadline: this partially...

would you please give me example query that return multiple result set to test ad is that equal to returning multiple ref cursor from pl/sql block which I think is...

as I expected the execution will go to the line [1028 in command.go](https://github.com/sijms/go-ora/blob/d25f493ddfef5322a2857ff08b9ff8759dc21b7d/v2/command.go#L1028) this area of code is incomplete I will complete and test

support added in v2.9.0 and example code is present [here](https://github.com/sijms/go-ora/blob/v2.9.0/examples/multi_resultsets/main.go)