Re: [go-nuts] Re: Implementing JDBC Driver

2018-04-14 Thread Philip Chapman
There is nothing particularly magic about JDBC. It's just an implementation of a RDBMS' communication protocol either implemented in Java or a Java wrapper around a C library that implements the protocol. If you have access to the source of the JDBC driver in question, you could probably use that

[go-nuts] Re: Implementing JDBC Driver

2018-04-14 Thread Asif Jalil
If Netezza can work with IBM CLI interface, then you can check out the Go CLI driver that I wrote for DB2: https://github.com/asifjalil/cli. Thanks. On Friday, April 13, 2018 at 2:49:59 PM UTC-4, Ken Bailey wrote: > > So at my new Job I'm the only one using Go and it's going quite well, but >