Trond Kandal

Results 21 comments of Trond Kandal

Thank You, Sir! No problem at all :) I appreciate very much this driver and the work gone into it. I see many uses for it in my ongoing projects,...

I hope this issue is not closed yet. I experience the same problem. I often write in russian and I am also getting question-marks in the UI when I try...

Hallo again, Sir! I am afraid it didn't work out well. 2017/02/23 06:44:46 sqlQuery = SELECT * FROM TIA_EMNEINFO WHERE EMNEKODE = 'SP301505' 2017/02/23 06:44:46 GetEmneInfos took 64.081284ms 2017/02/23 06:44:46...

Here are 2 that do not marshal (insert them into column INFOTEKST): 'Pedagogiske metoder: Veiledet praksis. Veiledning individuelt og i grupper. Refleksjonsgrupper. Obligatoriske arbeidskrav: Obligatorisk frammøte tilsvarer 90 % av...

If I call other functions that use the same connection, after I have called the function that fetches CLOBs, I get this error. Fetching CLOBs are clearly meant to block...

Done the following: I am standing in the directory $GOPATH/src/gopkg.in/rana/ora.v4 $ export GO_ORA_DRV_TEST_USERNAME="..." $ export GO_ORA_DRV_TEST_PASSWORD="..." $ export GO_ORA_DRV_TEST_DB="hostname:1521/sid" $ git branch * (HEAD detached at 2847fcc) master v4 v4.0.1...

$ go test -run=156 ... Connected to ".../...@...:1521/..." (34.882µs). --- FAIL: TestLobIssue156 (0.44s) z_lob_test.go:315: empty [{"institusjonsnr":1,"emnekode":"empty"}] z_lob_test.go:315: a [{"institusjonsnr":1,"emnekode":"a"}] z_lob_test.go:315: b [{"institusjonsnr":1,"emnekode":"b"}] z_lob_test.go:363: empty [{"institusjonsnr":1,"emnekode":"empty"}] z_lob_test.go:363: a [{"institusjonsnr":1,"emnekode":"a"}] panic: runtime...

$ go test -run=156 ... Connected to ".../...@...:1521/..." (19.643µs). --- FAIL: TestLobIssue156 (0.30s) z_lob_test.go:321: empty [{"InstitusjonsNr":1,"EmneKode":"empty","VersjonsKode":"ver","InfoTypeKode":"infokode","SprakKode":"sprakkode","TerminKodeFra":"term","ArstallFra":2,"TerminKodeTil":"min","ArstallTil":3,"InfoTekst":null,"InfoTekstOriginal":null,"InstitusjonsNrEier":4}] z_lob_test.go:317: a {{false 1} a ver infokode sprakkode term {false 2} min {false 3}...

Hello again, Sir! I changed my session-handling to using a pool and grab a session from the pool for each request. It seems to be working better, but I have...

Like this? ``` func GetFunc(w http.ResponseWriter, r *http.Request) { ... ses, err := pool.Get() defer ses.Close() if err != nil { ... } .... stmt, err := ses.Prep(sqlQuery, ora.OraI64, ora.OraS,...