Giter VIP home page Giter VIP logo

dblite's Introduction

dblite

SQLite extension for accessing other SQL databases, in SQLite. Similar to how Postgres Foreign Data Wrappers enable access to other databases in PostgreSQL, this project is a way to access "foreign" SQL databases in SQLite. It compiles to a run-time loadable extension, using riyaz-ali/sqlite.

It uses database/sql, so should be compatible with any database that implements a driver.

(Currently) Supported Databases

  • PostgreSQL (postgres)
  • MySQL (mysql)

Available Functions

dblite_open

Scalar function that registers a database by name for use in later queries.

Params:

  1. TEXT driver name (see supported databases above)
  2. TEXT give a name to the database connection, referenced in subsequent queries
  3. TEXT database connection string
SELECT dblite_open('postgres', 'mydb', 'postgres://...')

dblite_ping

Scalar function that checks if an opened database can be connected to.

Params:

  1. TEXT database name (string used as second param to db_open)
SELECT dblite_ping('mydb')

dblite_exec

Scalar function that executes a SQL statement without any results.

Params:

  1. TEXT database name
  2. TEXT SQL to execute
SELECT dblite_exec('mydb', 'DROP TABLE ...')

dblite_query

Table-valued function that executes a SQL statement and returns the results.

Params:

  1. TEXT database name
  2. TEXT SQL to execute
SELECT * FROM dblite_query('mydb', 'SELECT * FROM ...')

dblite_close

Scalar function that closes a database and deregisters it.

Params:

  1. TEXT database name
SELECT dblite_close('mydb')

dblite's People

Contributors

patrickdevivo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.