Samy Sultan

Results 133 comments of Samy Sultan

I create a wallet with orapki as follow ```bash >orapki wallet create -wallet wallet2 -pwd lab12345 -auto_login >orapki wallet add -wallet wallet2 -dn "cn=lab.com" -keysize 1024 -self_signed -validity 3650 -pwd...

Ok then the issue now is different may be the wallet that generate the error is not auto-login **(i think this is the cause of error)** you can also recreate...

in wallet.go ```Golang } else if num3 == 6 { index++ rgbKey := fileData[index : index+16] index += 16 blk, err := aes.NewCipher(rgbKey) if err != nil { return err...

Ok I will test and see

I read your code but I am asking about this ```Golang ctx2, cancel := context.WithTimeout(ctx1, 1*time.Second) if err = db.PingContext(ctx2); err != nil { fmt.Printf("connection ping failed: %s\n", err) }...

I think I need to create custom sql package

you need to ensure that you call conn.Close(), stmt.Close() and Rows.Close() after you finish your work with database also note that: 1- use defer is better to assure that you...

can you write your suggestion or make pull request about that

can you give me more information like: 1- library version 2- oracle version 3- can you find where the error happen from your log file