Skip to content

Instantly share code, notes, and snippets.

View titanve's full-sized avatar

Rafael Mora titanve

  • Colombia
View GitHub Profile
@titanve
titanve / syncrho.js
Last active August 23, 2018 03:32
Synchro tables from MS SQLServer to MySQL using node.js
const mysql = require("mysql");
const mssql = require("mssql");
// const rl = require("readline-sync");
let configmssql = "mssql://sa:password1@192.168.1.4/DATABASE1";
let connectionmysql = mysql.createConnection({
host: "192.168.1.8",
user: "sincro",
password: "password1",