gnolang/hackerspace

database/sql driver

moul opened this issue · 1 comments

moul commented

It would be enjoyable to have a database/SQL interface compatible with low-level types for creating optimized libraries. One possible solution is an AVL ORM, as suggested in this link: gnolang/gno#1467.

@ajnavarro, since you worked on an SQL server for Git, do you have any feedback?

In the future, it might be beneficial to have a native stdlib type that supports a small SQLite by default, like import "database/sqlite"; var db sqlite.New(). However, before considering this, let's explore the possibilities with pure Go.

compatible with low-level types for creating optimized libraries.

@moul WDYM with that? could you give us some examples? thanks!