This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
Releases: sqlectron/sqlectron-core
Releases · sqlectron/sqlectron-core
v4.0.0
v3.6.0
v3.5.0
v3.4.0
v3.3.0
v3.2.0
v3.1.0
v3.0.0
- Huge change. Separated server and database logic
- Handle connection status and errors in the base client
- Remove hack for multiple queries and use “native” support for multiple queries
- Improve error handling during the SSH connection
Break changes (example new API):
const serverSession = db.createServer({ server-config-here });
const dbConn = serverSession.createConnection('database-name-here');
Check out the db
test to better understand the new API.