loadOdbcLibraryFromPath function

DynamicLibrary loadOdbcLibraryFromPath(
  1. String path
)

Loads the ODBC engine library from a specific file path.

The path must be a valid absolute or relative path to the library file.

Returns the loaded DynamicLibrary instance.

Implementation

DynamicLibrary loadOdbcLibraryFromPath(String path) {
  return DynamicLibrary.open(path);
}