We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552c877 commit cd85fafCopy full SHA for cd85faf
lib/DBDish/Pg/Native.pm6
@@ -5,7 +5,7 @@ use NativeCall;
5
6
unit module DBDish::Pg::Native;
7
8
-constant LIB = %*ENV<DBIISH_PG_LIB> || 'libpq';
+constant LIB = %*ENV<DBIISH_PG_LIB> || ('libpq', 5);
9
10
#------------ Pg library functions in alphabetical order ------------
11
lib/DBDish/SQLite/Native.pm6
@@ -45,7 +45,7 @@ enum SQLITE_TYPE is export (
45
SQLITE_NULL => 5
46
);
47
48
-constant LIB = %*ENV<DBIISH_SQLITE_LIB> || 'libsqlite3';
+constant LIB = %*ENV<DBIISH_SQLITE_LIB> || ('libsqlite3' , 0);
49
50
sub sqlite3_errmsg(OpaquePointer $handle)
51
returns Str
0 commit comments