Merge pull request #732 from justinclift/patch-1

Update SQLite mgmt tool link with something actively maintained
This commit is contained in:
astaxie
2016-10-24 10:19:23 +08:00
committed by GitHub

View File

@@ -141,7 +141,7 @@ The above example shows how you fetch data from the database, but when you want
As it is clear from the above block of code, you first prepare a statement, after which you execute it, depending on the output of that execution then you either roll it back or commit it.
As a final note on this section, there is a useful SQLite management tool available: [http://sqliteadmin.orbmu2k.de/](http://sqliteadmin.orbmu2k.de/)
As a final note on this section, there is a useful SQLite management tool available: [http://sqlitebrowser.org](http://sqlitebrowser.org)
## Links