SimpleSQLite
SimpleSQLite copied to clipboard
SimpleSQLite is a Python library to simplify SQLite database operations: table creation, data insertion and get data as other data formats. Simple ORM functionality for SQLite.
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. Release notes Sourced from actions/download-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. Release notes Sourced from actions/upload-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. Release notes Sourced from actions/setup-python's releases. v5.0.0 What's Changed In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772)....
Thanks for this repo! Does SimpleSQLite supports foreign key (with ORM) by referencing another table? For example: ```python class EmailAddress(Model): id = Integer(primary_key=True) address = Text(not_null=True, unique=True) class Email(Model): id...
### **Refactored code using this techniques:** **1. [Rename method/variable](https://github.com/thombashi/SimpleSQLite/commit/db79de39891f543d7e84868721d86fd2b93f8086):** changes in `simplesqlite` and `test package` **2. [Introduce explaining variable](https://github.com/thombashi/SimpleSQLite/commit/ab3fd34a29d4838655cc6556298c673d4df02c11):** changes n `test/test_simplesqlite.py` file **3. [Extract method](https://github.com/thombashi/SimpleSQLite/commit/eddcaafe098784ac9c8927a424378fc0bb1bc0cc):** In `simplesqlite/core.py` and `simplesqlite/_validator.py`...
Bumps the actions-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` |...
If there is a single quote in the JSON data, it will be enclosed in double quotes, causing a syntax error and making it impossible to insert. Value.to_query() in query.py...