How to use the node-firebird-native-api.getMaster function in node-firebird-native-api

To help you get started, we’ve selected a few node-firebird-native-api examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github asfernandes / node-firebird-drivers / packages / node-firebird-driver-native / src / lib / client.ts View on Github external
constructor(library: string) {
		super();
		this.master = fb.getMaster(library);
		this.dispatcher = this.master.getDispatcherSync();
		this.util = this.master.getUtilInterfaceSync();
	}