New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

loopback-connector-firebird

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loopback-connector-firebird

FirebirdSQL connector for loopback-datasource-juggler

  • 0.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

loopback-connector-firebird

loopback-connector-firebird is the FirebirdSQL connector module for loopback-datasource-juggler.

Installation

npm install loopback-connector-firebird --save

Basic use

To use it you need loopback-datasource-juggler.

  1. Setup dependencies in package.json:

    {
      "dependencies": {
        "loopback-datasource-juggler": "latest",
        "loopback-connector-firebird": "latest"
      },
    }
    
  2. Use:

        var DataSource = require('loopback-datasource-juggler').DataSource;
        var dataSource = new DataSource('firebird', {
            host: '127.0.0.1',
            port: 3050,
            database: 'test.fdb',
            username: 'SYSDBA',
            password: 'masterkey',
            pools: 5 //number of sockets (omit this if you don't want to use pools)
        });
    

Test

npm test

Credits

Based on MySQL loopback connector. FirebirdSQL loopback connector uses node-firebird as the driver.

Keywords

FAQs

Package last updated on 07 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc