You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inspired from the Ruby sqlite gem, here is an improvement I would like to see in the Crystal shard syntax :
Being able to create a new database object, allowing usage everywhere in the code, as opposed to only in the 'do' block. Also would allow for usage of several databases at once.
db = SQLite3::Database.new 'database.db'
You would then be able to run db.exec, db.query on this object.
The text was updated successfully, but these errors were encountered:
Inspired from the Ruby sqlite gem, here is an improvement I would like to see in the Crystal shard syntax :
Being able to create a new database object, allowing usage everywhere in the code, as opposed to only in the 'do' block. Also would allow for usage of several databases at once.
db = SQLite3::Database.new 'database.db'
You would then be able to run db.exec, db.query on this object.
The text was updated successfully, but these errors were encountered: