migrate-cubrid-to-mysql

0.1.0 • Public • Published

Migrate-Cubird-To-Mysql

Migrate cubird to mysql.

How to Install

NPM

npm install migrate-cubrid-to-mysql

GIT

git clone https://github.com/iamdenny/migrate-cubird-to-mysql.git

How to use

Make tables schema on Mysql same as tables schema on Cubrid first.

app.js

var Mcm = require('migrate-cubird-to-mysql');
var htCubrid = {
    sHostname : '127.0.0.1',
    sUser : 'username',
    sPassword : 'password',
    nPort : 1527,
    sDatabase : 'database'
};
var htMysql = {
    sHostname : '127.0.0.1',
    sUser : 'username',
    sPassword : 'password',
    nPort : 3306,
    sDatabase : 'database',
    bDebug : false
};
var oMcm = new Mcm(htCubrid, htMysql);
 
oMcm.once('connected', function(){
    // first arg : oracle query
    // second arg : mysql table name
    // third arg : truncate(delete data from mysql table)
    // forth arg : callback
    oMcm.migrateByQuery("SELECT * FROM user", 'user', true, function(htResult){
          console.log('First migration is done', htResult);
      });
 
    oMcm.migrateByQuery("SELECT * FROM group", 'group', true, function(htResult){
          console.log('Second migration is done', htResult);
      });
    
    oMcm.migrateByQuery("SELECT * FROM article", 'article', true, function(htResult){
          console.log('Thrid migration is done', htResult);
      });      
}).once('done', function(htResult){
    console.log('All done', htResult);
    process.exit(0);
});

Execute

node app.js

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.01latest

Version History

VersionDownloads (Last 7 Days)Published
0.1.01
0.0.500
0.0.490
0.0.480
0.0.470
0.0.450
0.0.440
0.0.431
0.0.421
0.0.410
0.0.400
0.0.390
0.0.380
0.0.371
0.0.360
0.0.350
0.0.341
0.0.330
0.0.320
0.0.310
0.0.300
0.0.290
0.0.280
0.0.271
0.0.260
0.0.250
0.0.240
0.0.231
0.0.220
0.0.210
0.0.200
0.0.190
0.0.180
0.0.171
0.0.160
0.0.150
0.0.140
0.0.130
0.0.120
0.0.111
0.0.100
0.0.90
0.0.80
0.0.70
0.0.60
0.0.50
0.0.41
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i migrate-cubrid-to-mysql

Weekly Downloads

10

Version

0.1.0

License

BSD

Last publish

Collaborators

  • iamdenny