You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to connect to an old Oracle 8i database (an attempt to unload the data from this ancient beast) and receives this error message:
Ping error server compile time caps length less than 8
When looking into the code for tcp_protocol_nego.go i find these lines:
if result.ServerCompileTimeCaps == nil || len(result.ServerCompileTimeCaps) < 8 {
return nil, errors.New("server compile time caps length less than 8")
}
What is ServerCompileTimeCaps ?
The text was updated successfully, but these errors were encountered:
I am trying to connect to an old Oracle 8i database (an attempt to unload the data from this ancient beast) and receives this error message:
Ping error server compile time caps length less than 8
When looking into the code for tcp_protocol_nego.go i find these lines:
if result.ServerCompileTimeCaps == nil || len(result.ServerCompileTimeCaps) < 8 {
return nil, errors.New("server compile time caps length less than 8")
}
What is ServerCompileTimeCaps ?
The text was updated successfully, but these errors were encountered: