Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cocodintech/cordova-plugin-sqlserver

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cocodintech/cordova-plugin-sqlserver

Access to SQL Server database directly without any service

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

cordova-plugin-sqlserver

Cordova Plugin to connect to SQL Server without services

Sometimes we need to access to databse directly without any server as middleware. The purpose of this plugin is to avoid using services to access data directly.

It can be used on Cordova, PhoneGap and Ionic.

This version is compatible with iOS and Android platforms (IOS not tested yet in this fork!!!)

Instalation

cordova plugins add  @cocodintech/cordova-plugin-sqlserver

You can download the plugin and add it to your project as a local plugin

cordova plugin add /path/to/folder

It is also possible to install via repo url directly

cordova plugin add https://github.com/cocodinTech/cordova-plugin-sqlserver.git

How to use it

After add the plugin just intialize it with database parameters server, instance (could be empty "" ), username, password, database name. For example:

SqlServer.init("192.168.0.120:1433", "SQLEXPRESS", "sa", "01234567", "dinademo", function(event) {
  alert(JSON.stringify(event));
}, function(error) {
  alert(JSON.stringify(error));
});

On success it will return "Plugin initialized"

After that you can test your database connection with

SqlServer.testConnection(function(event) {
  alert(JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});				

On succes in this case it will return "Connection succeeded"

Query execution

At this moment there is two general purpose methods:

  • executeQuery : Just execute the query on server side and return a JSON formatted array
  • execute: Execute an INSERT, UPDATE, DELETE and return {rowsAffected: number} when succed or the database error on fail

executeQuery method

Once the plugin is initialized you can execute a query on SQL Server by doing

SqlServer.executeQuery("select * from test_table where test_code=1", function(event) { 
  alert(JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});				

You can call a Store Procedure also

SqlServer.executeQuery("exec i_store_test '500048', '1', 'MMMM'", function(event) {
  alert(JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});

execute method

In order to execute an INSERT, DELETE or UPDATE just use somethig like

SqlServer.execute("update table_test set field_test=22 where key_test=500048", function(event) {
  alert("Update complete : " + JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});

Important

If you need subsequent calls to the database in the ios version you will not be able to do the following

SqlServer.executeQuery("select * from test_table where test_code=1", function(event) {
  alert(JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});				

SqlServer.executeQuery("exec i_store_test '500048', '1', 'MMMM'", function(event) {
  alert(JSON.stringify(event));
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});

You must do this in the following way to avoid EXCE_BAD_ACCESS error on ios platforms

SqlServer.executeQuery("select * from test_table where test_code=1", function(event) {
    
  // On first call completed
  SqlServer.executeQuery("exec i_store_test '500048', '1', 'MMMM'", function(event) {
    alert(JSON.stringify(event));
  }, function(error) {
    alert("Error : " + JSON.stringify(error));
  });
  
}, function(error) {
  alert("Error : " + JSON.stringify(error));
});				

Credits

  • @SergioDosSantos for the original cordova-plugin-sqlserver from which this plugin is forked.

Keywords

FAQs

Package last updated on 30 May 2023

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