Skip to content
V1A0 edited this page Apr 4, 2021 · 36 revisions

Welcome to the Sqllex Wiki! 👋


Here you can find some explanations and examples for Sqllex lib.

Chapters


About

What the heck is Sqllex? 🤔

Squllex it's python library created to make it easier for developers to interact with databases. Currently it supports only SQLite databases but we plan to expand this list soon. SQLite is a nice and simple tool for admining databases and Sqllex make it even more easier and comfortable.

It'll be a lot easier to show then explain.

Examples

SQLite3x

Public methods:

  • insert
  • insertmany
  • update
  • replace
  • select
    • select_distinct
    • select_all
  • markup
  • create_table
    • create_temp_table
    • create_temporary_table
  • delete
  • drop
  • get_columns
  • pragma
    • foreign_keys
    • journal_mode
    • table_info
  • execute
  • executemany
Clone this wiki locally