We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when using SQLServer throw this error
[Illuminate\Database\QueryException] "SQLSTATE[42000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Incorrect syntax near '`'. (SQL: UPDATE ...
so I need to remove backtick symbol from vendor\mavinoo\laravel-batch\src\Batch.php
from
if ($driver == 'pgsql' ) $final[$field][] = 'WHEN ' . $index . ' = '' . $val[$index] . '' THEN ' . $value . ' ';
to
if ($driver == 'pgsql' || $driver == 'sqlsrv') $final[$field][] = 'WHEN ' . $index . ' = '' . $val[$index] . '' THEN ' . $value . ' ';
The text was updated successfully, but these errors were encountered:
hi @nexterid install version v2.2.9
disable backtick for driver pgsql & sqlsrv , commit: d3392a0
Sorry, something went wrong.
No branches or pull requests
when using SQLServer throw this error
[Illuminate\Database\QueryException]
"SQLSTATE[42000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Incorrect syntax near '`'. (SQL: UPDATE ...
so I need to remove backtick symbol from vendor\mavinoo\laravel-batch\src\Batch.php
from
if ($driver == 'pgsql' )
$final[$field][] = 'WHEN ' . $index . ' = '' . $val[$index] . '' THEN ' . $value . ' ';
if ($driver == 'pgsql' || $driver == 'sqlsrv')
$final[$field][] = 'WHEN ' . $index . ' = '' . $val[$index] . '' THEN ' . $value . ' ';
The text was updated successfully, but these errors were encountered: