Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 563 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 563 Bytes

JugglingDB-firebird

Firebird database adapter for JugglingDB.

Install

npm install jugglingdb jugglingdb-firebird

Usage

To use it you need jugglingdb@0.2.x.

  1. Setup dependencies in package.json:

    {
      ...
      "dependencies": {
        "jugglingdb": "0.2.x",
        "jugglingdb-firebird": "latest"
      },
      ...
    }
  2. Use:

        var Schema = require('jugglingbd').Schema;
        var schema = new Schema('firebird', {
            database: '/path/to/database.fdb'
        });