nakagami / firebirdsql

Firebird RDBMS sql driver for Go (golang)
MIT License
229 stars 60 forks source link

Error op_reject #74

Closed ZzEeKkAa closed 4 years ago

ZzEeKkAa commented 5 years ago

Hi, everyone. I know, that firebird 1.5.6 is not supported by this library, but it seems, like it's working on base level. I just have issue with connection. After successful connection, in some cases, I have not working one. Any query on this connection returns "_parse_connect_response() op_reject" error. But if it is successful, there is no error in any next queries. So current workaround for me is:

for{
  connect()
  if ping(){ break; }
  close()
}
defer close()

// do my stuff

it takes 4-7 times to establish good connection. Does anybody has a clue how to trace this issue?

BTW: database is ok, since I can connect to it with isql without any trouble.

nakagami commented 4 years ago

Sorry Firebird 1.5 is not supported