npm install @aux4/db``bash`
$ npm install --global @aux4/db
...
$ npm install --global @aux4/db-oracle
$ npm install --global @aux4/db-mssql
$ npm install --global @aux4/db-postgres
`bash`
$ db execute --host localhost --port 1521 --user sysadmin --service ORCL --query "select * from schema.table where id = :id" --id 1
`bash`
$ db stream --host localhost --port 1521 --user sysadmin --service ORCL --query "select * from schema.table where id = :id" --id 1
create config.yaml
`yaml`
config:
dev:
oracle:
host: localhost
port: 1521
user: sysadmin
password: ""
service: ORCL
`bash``
$ db execute --configFile config.yaml --config dev/oracle --query "select * from schema.table where id = :id" --id 1