zombiezen / go-sqlite

Low-level Go interface to SQLite 3
https://pkg.go.dev/zombiezen.com/go/sqlite
ISC License
741 stars 18 forks source link

Missing Columns information #56

Closed benjiro29 closed 1 year ago

benjiro29 commented 1 year ago

Currently there is no way to automated based upon the amount of columns, as "stmt.colNames" is not exported.

Normally this is done in most other packages as rows.Columns where you then can get the column names ( and total length ).

benjiro29 commented 1 year ago

Never mind, discovered it was not ColumnLen but ColumnCount ...