Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create database instance for further usage #32

Open
starkgate opened this issue Jan 26, 2018 · 3 comments
Open

Create database instance for further usage #32

starkgate opened this issue Jan 26, 2018 · 3 comments

Comments

@starkgate
Copy link

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.

@bcardiff
Copy link
Member

DB.open without a block will give you a Database instance .

Even with block syntax you are allowed to have multiple Database instances.

@starkgate
Copy link
Author

I see, I wasn't aware of that (new to Crystal). I'll try it out, thank you.

@Indribell
Copy link

With the new example, i assume this issue can be closed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants