├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Build.PL ├── CONTRIBUTING.md ├── Changes ├── INSTALL ├── LICENSE ├── META.json ├── README.pod ├── dist.ini ├── examples └── blog │ ├── blog.conf │ ├── lib │ ├── Blog.pm │ └── Blog │ │ ├── Controller │ │ └── Posts.pm │ │ └── Model │ │ └── Posts.pm │ ├── migrations │ └── blog.sql │ ├── script │ └── blog │ ├── t │ └── blog.t │ └── templates │ ├── layouts │ └── blog.html.ep │ └── posts │ ├── _form.html.ep │ ├── create.html.ep │ ├── edit.html.ep │ ├── index.html.ep │ └── show.html.ep ├── lib └── Mojo │ ├── SQLite.pm │ └── SQLite │ ├── Database.pm │ ├── Migrations.pm │ ├── PubSub.pm │ ├── Results.pm │ └── Transaction.pm ├── prereqs.yml └── t ├── connection.t ├── crud.t ├── database.t ├── migrations.t ├── migrations └── test.sql ├── results.t └── sqlite_lite_app.t /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/Build.PL -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/Changes -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/META.json -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/README.pod -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/dist.ini -------------------------------------------------------------------------------- /examples/blog/blog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/blog.conf -------------------------------------------------------------------------------- /examples/blog/lib/Blog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/lib/Blog.pm -------------------------------------------------------------------------------- /examples/blog/lib/Blog/Controller/Posts.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/lib/Blog/Controller/Posts.pm -------------------------------------------------------------------------------- /examples/blog/lib/Blog/Model/Posts.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/lib/Blog/Model/Posts.pm -------------------------------------------------------------------------------- /examples/blog/migrations/blog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/migrations/blog.sql -------------------------------------------------------------------------------- /examples/blog/script/blog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/script/blog -------------------------------------------------------------------------------- /examples/blog/t/blog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/t/blog.t -------------------------------------------------------------------------------- /examples/blog/templates/layouts/blog.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/layouts/blog.html.ep -------------------------------------------------------------------------------- /examples/blog/templates/posts/_form.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/posts/_form.html.ep -------------------------------------------------------------------------------- /examples/blog/templates/posts/create.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/posts/create.html.ep -------------------------------------------------------------------------------- /examples/blog/templates/posts/edit.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/posts/edit.html.ep -------------------------------------------------------------------------------- /examples/blog/templates/posts/index.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/posts/index.html.ep -------------------------------------------------------------------------------- /examples/blog/templates/posts/show.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/examples/blog/templates/posts/show.html.ep -------------------------------------------------------------------------------- /lib/Mojo/SQLite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite.pm -------------------------------------------------------------------------------- /lib/Mojo/SQLite/Database.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite/Database.pm -------------------------------------------------------------------------------- /lib/Mojo/SQLite/Migrations.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite/Migrations.pm -------------------------------------------------------------------------------- /lib/Mojo/SQLite/PubSub.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite/PubSub.pm -------------------------------------------------------------------------------- /lib/Mojo/SQLite/Results.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite/Results.pm -------------------------------------------------------------------------------- /lib/Mojo/SQLite/Transaction.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/lib/Mojo/SQLite/Transaction.pm -------------------------------------------------------------------------------- /prereqs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/prereqs.yml -------------------------------------------------------------------------------- /t/connection.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/connection.t -------------------------------------------------------------------------------- /t/crud.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/crud.t -------------------------------------------------------------------------------- /t/database.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/database.t -------------------------------------------------------------------------------- /t/migrations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/migrations.t -------------------------------------------------------------------------------- /t/migrations/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/migrations/test.sql -------------------------------------------------------------------------------- /t/results.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/results.t -------------------------------------------------------------------------------- /t/sqlite_lite_app.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grinnz/Mojo-SQLite/HEAD/t/sqlite_lite_app.t --------------------------------------------------------------------------------