odbc icon indicating copy to clipboard operation
odbc copied to clipboard

odbc driver written in go

Results 72 odbc issues
Sort by recently updated
recently updated
newest added

After the recent commit to add support for QueryContext: https://github.com/alexbrainman/odbc/commit/1293aff3fc513fdd5e9d521b64e35bf56fba8d22#diff-4f427d2b022907c552328e63f137561f6de92396d7a6e8f6c2ea1bcf0db52654R153 We are getting the following error: ``` Thursday, August 15th 2024 @ 3:41:50 pm panic: send on closed channel Thursday,...

I have a table with column tinyint in my database. In my code the field is bool in a struct. I can't update the value to the tinyint column. table:...

I can insert and select strings / varchar. If the integer is hardcoded like `"INSERT INTO person (name, age) VALUES (?, 30)"` I can insert successfully and I can scan...

![image](https://github.com/alexbrainman/odbc/assets/53596410/597d029a-1275-43ca-8282-8986d44cade9) Why not return directly when encountering an parsing data error?

[https://github.com/ebitengine/purego](url)

Fixes #199. It looks like what was happening here is that the context was getting cancelled while the goroutine execution was between lines 148 and 152. After the result gets...

Hi Alex! I would like to perform a [columnar wise bulk fetch](https://learn.microsoft.com/en-us/sql/odbc/reference/develop-app/column-wise-binding?view=sql-server-ver16). Is this supported by any of the exposed APIs? Trying to find example code without writing C-GO bindings...

Hey there! First, thanks for making this library. It's been an incredibly big help and I'm impressed with its quality. You're a great maintainer. I ran into a null pointer...

Hi! First, thank you for maintaining this project! I’m using github.com/alexbrainman/odbc to call a stored procedure on DB2 for i (IBMi / iSeries / AS400) via the IBM i Access...