• Stars
    star
    537
  • Rank 79,842 (Top 2 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

SQLite3 bindings for React Native

react-native-sqlite

NOTE: This hasn't been maintained for a while and was never very complete to start with. Check out https://github.com/andpor/react-native-sqlite-storage for a more usable library!

A binding for sqlite3 for React Native. Allows a database to be opened and for SQL queries to be run on it.

Written by Thomas Parslow (almostobsolete.net and tomparslow.co.uk) as part of Active Inbox (activeinboxhq.com).

Installation

Install using npm with npm install --save react-native-sqlite

You then need to add the Objective C part to your XCode project. Drag AIBSQLite.xcodeproj from the node_modules/react-native-sqlite folder into your XCode project. Click on the project in XCode, goto Build Phases then Link Binary With Libraries and add libAIBSQLite.a and libsqlite3.dylib.

NOTE: Make sure you don't have the AIBSQLite project open seperately in XCode otherwise it won't work.

Usage

var sqlite = require('react-native-sqlite');
sqlite.open("filename.sqlite", function (error, database) {
  if (error) {
    console.log("Failed to open database:", error);
    return;
  }
  var sql = "SELECT a, b FROM table WHERE field=? AND otherfield=?";
  var params = ["somestring", 99];
  database.executeSQL(sql, params, rowCallback, completeCallback);
  function rowCallback(rowData) {
    console.log("Got row data:", rowData);
  }
  function completeCallback(error) {
    if (error) {
      console.log("Failed to execute query:", error);
      return
    }
    console.log("Query complete!");
    database.close(function (error) {
      if (error) {
        console.log("Failed to close database:", error);
        return
      }
    });
  }
});

Database Location

It will first look for the database filename you give in the Documents directory inside the app sandbox. If it doesn't find anything there it will look in the app bundle and try and copy it to the Documents directory. If it doesn't find the database in either place then it will create a new blank database in the Documents directory.

In the future it should probably be made possible to open/create databases in the tmp and Libraries directories.

Known Issues

  • Doesn't support reading of BLOB fields right now. I'm not entirely sure what would be the best way to pass back binary data. Maybe Base64?
  • Database needs to be closed manually. I'm not sure how I could do this automatically.

Feedback Welcome!

Feedback, questions, suggestions and most of all Pull Requests are very welcome. This is an early version and I want to figure out the best way to continue it.

I'm also available for freelance work!

I'm @almostobsolete on Twitter my email is [email protected] and you can find me on the web at tomparslow.co.uk and almostobsolete.net

More Repositories

1

stream-template

An ES6 Tagged String Literal tag that can interpolate Node.JS streams, strings, arrays and Promises and produces a stream.
JavaScript
115
star
2

react-native-html-webview

Display HTML in a UIWebView, optionally sanitizing it first
Objective-C
104
star
3

through2-concurrent

Simple Node.JS stream (streams2) Transform that runs the transform functions concurrently (with a set max concurrency)
JavaScript
74
star
4

org-daypage

Day pages for Emacs Org-Mode
Emacs Lisp
39
star
5

asyncboto

A small bit of code to make the Boto library for Amazon's AWS services work in an asynchronous (and extremely hacky) manner with Tornado. For a probably better approach see: http://blog.joshhaas.com/2011/06/marrying-boto-to-tornado-greenlets-bring-them-together/
Python
28
star
6

Haskell-Fun

Bits and pieces of Haskell code written for fun
Haskell
19
star
7

hubbub

Comments as GitHub pull requests for Jekyll (and other static site generator) websites.
JavaScript
16
star
8

react-native-sqlite-example

An example of how to read an SQLite database from React Native using react-native-sqlite
JavaScript
14
star
9

custom-ios-views-with-react-native

An example app showing a custom native component in React Native
Objective-C
13
star
10

picprogrammer

Some minor fixes to Tetsujin's Python replacement for the PicPro programmer software.
Python
9
star
11

safe-html

JavaScript
9
star
12

string-replace-stream

Replace one string with another string in a Node.js Stream.
JavaScript
9
star
13

regex-crossword-solver

A solver for a Regular Expression Crossword
Haskell
6
star
14

jquery-ebayshoppingapi

eBay Shopping API Plugin for jQuery
4
star
15

midiballs

OSX MIDI->OSC bridge for Felix's Machines
C++
3
star
16

tblc

Tiny PIC Boot Loader Command Line Tool
Python
3
star
17

sqs-readable-stream

Create a Readable Node.JS stream from an Amazon Simple Queue Service (SQS) Queue
JavaScript
3
star
18

mud.el

The beginings of a mud client using Circe's lui.el. Very basic and probably won't work for you right now.
Emacs Lisp
2
star
19

lhs-checkers

A literate Haskell program that plays Checkers.
Haskell
1
star
20

react-native-example-viewer

Component example viewer for React Native
JavaScript
1
star
21

Data.Bloom

A Haskell implementation of a Bloom filter
Haskell
1
star
22

dropbox-python

Fork of the Dropbox's Python API
Python
1
star
23

Marvin-Jabber-Client

This is a client for Jabber instant messenger servers that I wrote about 9 or 10 years ago. You probably don't want to use this, I just wanted to keep a hold of the code so I'm uploading it to Github.
Eiffel
1
star