Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-29 | Get `rake dbshell` working for SQLite3 | Teddy Wing | |
Add `DBShell::Sqlite3.runshell`, which takes database connection information and starts a SQLite3 shell. Currently the Rake task just calls the SQLite3 `.runshell` method directly without any database adapter discrimination and also forces the development environment. It's nice to see it working. Now, we'll need to clean up those parts of the Rakefile. | |||
2017-04-29 | Add `DBShell::Sqlite3Client` | Teddy Wing | |
Much simpler `.build_command` than the Postgres version. Only building arguments now. Want to try out executing the subprocess command. Inspired of course by: https://github.com/django/django/blob/66150f7cf61bc09547fa98586790df596eff6d77/django/db/backends/sqlite3/client.py |