SQLite
SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.
Here are 950 public repositories matching this topic...
-
Updated
Nov 25, 2020 - Python
-
Updated
Nov 23, 2020 - Python
-
Updated
Nov 23, 2020 - Python
- OS: Linux (Arch)
- Python: 3.7.4
- litecli: 1.1.0
This is a great tool (thanks!), but I was deterred from considering it by the references to completing with the "Right-arrow" key in the documentation (and UI). I'm used to completing with the standard GNU Readline Tab key (as in sqlite) and never use arrow keys for completion and don't use any tools which do by default (it's bee
-
Updated
Oct 21, 2020 - Python
Improve the CI
Feature Request
Describe the solution you'd like
Improve github actions
- Lint the code.
- Run functional tests. See #360
- Run tests for djongo
- Include coveralls / coverage after last success.
- Set up action for when pushing a tag. Should be some kind of release. See #326
PR link
See #368 where we remove travis and replace it with github actions.
Include signals
-
Updated
Aug 30, 2020 - Python
-
Updated
Nov 16, 2020 - Python
-
Updated
Jul 27, 2020 - Python
-
Updated
Jul 28, 2020 - Python
-
Updated
Nov 13, 2020 - Python
-
Updated
Nov 11, 2020 - Python
-
Updated
Nov 22, 2020 - Python
-
Updated
Aug 19, 2020 - Python
-
Updated
Nov 9, 2020 - Python
-
Updated
Nov 10, 2020 - Python
-
Updated
Feb 27, 2020 - Python
-
Updated
Sep 12, 2020 - Python
Created by D. Richard Hipp
Released August 17, 2000
- Website
- www.sqlite.org
- Wikipedia
- Wikipedia
Example of usage:
users = await User.filter(first_name__ilike="c%r")I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")This would be used to match Jeremy, Jorge, Jordan...