Heyho ;D.
How do you think about including support for serverside databases?
E.g. (thanks to Thorben Brodt from
easy-coding.de) a dump method, that
exports the local database in SQL.
Or, what I was thinking about, the option to use the database at the
client side or at the server side.
This should be looking like that:
{{{
$.jdb({side: 'server', host: 'localhost', databaseName: 'myDB', user:
'root', password: 'myPW'});
$.jdb().createTable("test", ["name", "value"]); //creates the table
at the server database
}}}
Greetings,
Martin