Nodejs Firebird driver version 0.4.0 is released with initial support for Service Manager

node-firebird 0.4.0 released with initial support for Service Manager .

For the moment only Backup Service is implemented

Firebird.attach(options, function(err, svc) { 
    if (err)
        return;
    svc.backup(
        {
            database:'/DB/MYDB.FDB',
            files: [
                    {
                     filename:'/DB/MYDB.FBK', 
                     sizefile:'0'
                    }
                   ]
        }, 
        function(err, data) {
            console.log(data);
        });
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading...

Leave a Reply