laravel-pdo-odbc
laravel-pdo-odbc copied to clipboard
ODBC/Snowflake integration for Laravel Framework to easily create a ODBC connection via Laravel Eloquent.
Hi All I'm trying to use this package to do inserts to snowflake from laravel but I'm running into some issues getting the right syntax to work. This statement works...
Hi, when using the laravel whereYear filter, the controller returns an error. This is due to using the strftime function. Snowflake has not implemented this feature yet. The use of...
When using the LoginRequest RateLimiter that caches a failed login attempt Laravel attempts to run a query that starts with "INSERT OR ignore.. " . This syntax is not supported...
When I try to use package with FreeTDS I'm getting: `InvalidArgumentException Unsupported driver [FreeTDS].` is it possible to add FreeTDS support?
Without this, selectRaw("CONCAT(name, ',')" would not work, for example.
Using SQL functions is not working with this and using the Snowflake Native Driver. We have a number of queries like: ``` select *, case when run_code = 'Y' then...
Hi. I'm using the latest version, 1.2* But I just realized that the warehouse config and the schema configs are not being used. When I alter their values, nothing happens....
That's in the 1.2-dev branch. I'm using the "dynamic" configuration in database.php similar to ``` 'odbc-connection-name' => [ 'driver' => 'snowflake', 'odbc_driver' => 'Snowflake path Driver', 'server' => 'host.example.com' 'username'...
Currently, the `datetimeTz` uses the [`datetime`](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#datetime) method, which is an alias of `timestamp_ntz`. This is not the expected behavior. `timestamp_ltz` is create timestamps based upon UTC. `timestamp_ntz` is create timestamps...