Releases: appsfortableau/laravel-pdo-odbc
Releases · appsfortableau/laravel-pdo-odbc
v1.2.5
v1.2.4
- Change
getColumnType
signature for Laravel >= 10.30.0
V1.2.3
Hotfix: Fixed fetching wrong auto incremented primary key column when using Eloquent insertGetId() function
v1.2.2
- Hotfix: weird PHP7.4 <> PHP8.0 compatibility issues..
v1.2.1
- Backwards compatible with PHP 7.4.
v1.2.0
- Added Snowflake native driver
snowflake_native
. - Fix: ODBC Snowflake accepts the
server
prop. - Support PHP > 8.0.
- Do not require
ext-odbc
anymore. - Improved documentation/README.
v1.1.7
- Make sure the Snowflake session is not being affected by
QUOTED_IDENTIFIERS_IGNORE_CASE=true
setting. - Changed composer package name.
1.1.6
- Fix: aggregate value in select statement will be uppercased and causes Laravel to crash. Mainly happening via
DB::table('...')->paginate();
1.1.5
- Adding support for Snowflakes PHP extension
snowflake_pdo
. - Support for "native" Snowflake PDO is a new database driver called "snowflake_native", for backward compatibility.
- Improved README with an example for "native" snowflake connection.
- Added extra check if the odbc_driver configuration property was set properly.
- Adding proper workaround for #8. Adding constraints queries are now respecting the
NoExecuteInSqlPrepare=true
driver configuration option.