loadOdbcLibraryFromAssets function

DynamicLibrary? loadOdbcLibraryFromAssets()

Attempts to load the ODBC engine library from application assets.

This is now handled automatically by Native Assets via the build hook. The hook downloads binaries from GitHub Releases to ~/.cache/odbc_fast/

Returns the loaded DynamicLibrary if found, null otherwise.

Implementation

DynamicLibrary? loadOdbcLibraryFromAssets() {
  // Native Assets handles this automatically via hook/build.dart
  // This method is kept for API compatibility but is no longer used
  return null;
}