gosqlite3
gosqlite3 copied to clipboard
Use 'database/sql'
It would be nice, if the packge used 'database/sql' from the standard libs so the access would be more generic.
There are no immediate plans for adding database/sql support. However I believe there's an sqlite driver for database/sql if you prefer the latter's API.
database/sql
support should be of utmost importance. Not conforming to the library standard renders it incompatible with other packages that rely on database/sql
, therefore making it effectively useless.
maybe useless to you, but gosqlite3 predates the database/sql interface by quite a bit.
I see, didn't know that the sqlite driver predatest the database/sql
package