![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
sqlectron-core
Advanced tools
The common code used by all sqlectron clients.
Requires node 6 or higher.
It is pronounced "sequelectron" - https://translate.google.com/?source=osdd#en/en/sequelectron
Do you want to support another SQL database? Please follow these steps.
Install via npm:
$ npm install sqlectron-core --save
SQLECTRON keeps a configuration file in the directory
~/Library/Preferences/Sqlectron
$XDG_CONFIG_HOME
or ~/.config
) + /Sqlectron
$LOCALAPPDATA
or %USERPROFILE%\AppData\Local
) + \Sqlectron\Config
You can overwrite the directory used by setting the
SQLECTRON_CONFIG
environment variable to the desired directory.
For older versions it was stored as
.sqlectron.json
at the user's home directory (~/
osx and linux;%userprofile%
windows ).
Although you can change this file manually, most of time you should not worry about it because SQLECTRON will manage the configuration for you.
Example
{
"resultItemsPerPage": 50,
"limitQueryDefaultSelectTop": 100,
"servers": [
{
"id": "c48890d8-5d87-4085-8b22-94981f8d522c",
"name": "pg-vm-ssh",
"client": "postgresql",
"host": "localhost",
"port": 5432,
"user": "user",
"password": "password",
"database": "company",
"ssh": {
"host": "10.10.10.10",
"port": 22,
"privateKey": "~/.vagrant.d/insecure_private_key",
"user": "core"
}
},
{
"id": "0f6536a1-c232-4515-942a-c0fb56d362b2",
"name": "vm-ssh",
"client": "mysql",
"host": "localhost",
"port": 3306,
"user": "root",
"password": "password",
"database": "authentication"
}
]
}
The limit of items per page (default on sqlectron-gui: 100)
The paging is not done in SQL query. Instead its is done during the results rendering.
The limit used in the default query (default: 1000)
Array with all servers connection.
id
: in case including a new server manually there is no need setting an id field because SQLECTRON will do it for youname
client
: postgresql
, mysql
or sqlserver
host
port
user
password
database
ssh
host
user
port
privateKey
privateKeyWithPassphrase
Please check out it here.
Copyright (c) 2015 The SQLECTRON Team. This software is licensed under the MIT License.
FAQs
sqlectron-core
The npm package sqlectron-core receives a total of 23 weekly downloads. As such, sqlectron-core popularity was classified as not popular.
We found that sqlectron-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.