crystal-sqlite3
crystal-sqlite3 copied to clipboard
SQLite3 bindings for Crystal
Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...
Hi. I'm running Crystal natively on Windows 10 and I was wondering about how to use this shard. Right now I have a small project with successfully installed crystal-sqlite3 shard....
DB.open "sqlite3:./mydb.sqlite3" do |db| db.exec "DROP TABLE IF EXISTS tablename" end triggers "Exception: no such table: tablename (SQLite3::Exception)" when: sqlite3 mydb.sqlite3 SQLite version 3.31.1 2020-01-27 19:55:54 Enter ".help" for usage...
``` Invalid memory access (signal 11) at address 0x0 [0x55eb4f123e66] *Exception::CallStack::print_backtrace:Nil +118 in bin/translater [0x55eb4f1048e6] ~procProc(Int32, Pointer(LibC::SiginfoT), Pointer(Void), Nil) +310 in bin/translater [0x7f828811c770] ?? +140198605342576 in /usr/lib/libc.so.6 [0x0] ??? ```...
When not using the `rs.each` block to read each row sequentially, it is seemingly necessary for `rs.move_next` to be called before the returned data can be accessed. This doesn't seem...