hgourvest / node-firebird

Pure javascript and asynchronous Firebird client for Node.js.
Mozilla Public License 2.0
256 stars 128 forks source link

feat: Add charset custom #340

Open dliocode opened 2 months ago

dliocode commented 2 months ago

`Why use:

const config = { host: '127.0.0.1', port: 3050, database: "/path/to/base.fdb", user: "SYSDBA", password: "masterkey", lowercase_keys: true, pageSize: 4096, retryConnectionInterval: 1000, encoding: 'WIN1252', charset: 'latin1' // Add new configuration - charset custom } `

nickolasdeluca commented 2 months ago

This is a neat feature that has been requested by the south american comunity, would be great to be able to stop modifying the source code of the package on production environments.