All Projects → vapor-community → Sqlite Provider

vapor-community / Sqlite Provider

Licence: mit
SQLite3 provider for Vapor

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Sqlite Provider

Chosen
Deprecated - Chosen is a library for making long, unwieldy select boxes more friendly.
Stars: ✭ 22,136 (+201136.36%)
Mutual labels:  deprecated
Localart
An HTML5 mobile app for navigating & browsing locations of public art, architecture, and culture in Norfolk, VA.
Stars: ✭ 5 (-54.55%)
Mutual labels:  deprecated
Django Jquery Widgets
This project is no longer maintained.
Stars: ✭ 24 (+118.18%)
Mutual labels:  deprecated
Docker Cleanup
DEPRECATED Automatic Docker image, container and volume cleanup
Stars: ✭ 582 (+5190.91%)
Mutual labels:  deprecated
Progit
Pro Git Book Content, 1st Edition - This content is deprecated. See 2nd edition at [progit2](https://github.com/progit/progit2)
Stars: ✭ 5,972 (+54190.91%)
Mutual labels:  deprecated
Fluent Plugin Grep
(Deprecated) Fluentd output plugin to grep messages
Stars: ✭ 17 (+54.55%)
Mutual labels:  deprecated
Resthooks
A lightweight subscription notification layer on top of your existing REST API
Stars: ✭ 525 (+4672.73%)
Mutual labels:  deprecated
Madalynnplumbundle
The deploy bundle using Plum for Symfony2
Stars: ✭ 26 (+136.36%)
Mutual labels:  deprecated
Miniproxy
🚨⚠️ UNMAINTAINED! ⚠️🚨 A simple PHP web proxy.
Stars: ✭ 810 (+7263.64%)
Mutual labels:  deprecated
Doctrinemigrations
[DEPRECATED] Use Phinx instead
Stars: ✭ 24 (+118.18%)
Mutual labels:  deprecated
Ui Fabric Ios
DEPRECATED Please use the new repo
Stars: ✭ 590 (+5263.64%)
Mutual labels:  deprecated
Mern Starter
⛔️ DEPRECATED - Boilerplate for getting started with MERN stack
Stars: ✭ 5,175 (+46945.45%)
Mutual labels:  deprecated
Gamejoltlua
Access to GameJolt's opportunities for all your lovely Lua projects.
Stars: ✭ 18 (+63.64%)
Mutual labels:  deprecated
Mern Cli
⛔️ DEPRECATED - A cli tool for getting started with MERN
Stars: ✭ 575 (+5127.27%)
Mutual labels:  deprecated
Esp32 Http Update
Clone of https://github.com/esp8266/Arduino/tree/master/libraries/ESP8266httpUpdate for ESP32
Stars: ✭ 25 (+127.27%)
Mutual labels:  deprecated
Time Grunt
Display the elapsed execution time of grunt tasks
Stars: ✭ 531 (+4727.27%)
Mutual labels:  deprecated
Watset
Watset: Automatic Induction of Synsets from a Graph of Synonyms
Stars: ✭ 16 (+45.45%)
Mutual labels:  deprecated
Ng Suggest
AngularJS module to provide Typeahead via OpenSearch Suggestions
Stars: ✭ 9 (-18.18%)
Mutual labels:  deprecated
Otc Tools
(Deprecated) Simple bash/curl/jq based command line tool using the OpenStack and OTC specific REST APIs.
Stars: ✭ 26 (+136.36%)
Mutual labels:  deprecated
Materialdrawer Xamarin
DEPRECATED!!! Xamarin bindings for https://github.com/mikepenz/MaterialDrawer
Stars: ✭ 22 (+100%)
Mutual labels:  deprecated

Vapor SQLite

Adds SQLite support to the Vapor web framework.

Install

import Vapor
import VaporSQLite

let drop = Droplet()
try drop.addProvider(VaporSQLite.Provider.self)

Config

Be sure to have a sqlite.json config file in your Config directory, the path is set relatively from the Droplet's working directory

{
  "path": "/path/to/database.sqlite"
}

Raw Queries

let result = try drop.database?.driver.raw("SELECT sqlite_version()")
print(result)

Dependencies

OS X

brew install sqlite3

Linux

sudo apt-get update
sudo apt-get install sqlite3 libsqlite3-dev
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].