How to use the node-firebird-native-api.disposeMaster 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
protected async internalDispose(): Promise {
		this.dispatcher!.releaseSync();
		fb.disposeMaster(this.master!);

		this.util = undefined;
		this.dispatcher = undefined;
		this.master = undefined;
	}
}