Fabian Grutschus

Results 30 comments of Fabian Grutschus

Is it possible that we run into a timeout here? Does increasing the timeout on the Options object help?

Currently working on it and to make things a bit easier I supplied PR #39. My suggestion for the authentication class: ```js const AUTH_RESULT_FAILURE = 0 const AUTH_RESULT_SUCCESS = 1...

So instead of changing the existing method, should we add another which returns a result object and the old method just use it?

Ist jemand fähig sich bei https://bib-magdeburg.genios.de/ mit seinem Bib-Ausweis anzumelden? Ein wenig Recherche bei der Stadt Magdeburg und man kann nur finden, dass Genios geplant sein soll für „August“. Keine...

It looks like that none of the other PDO drivers supports this. Is passing a [PHP stream context](https://www.php.net/manual/en/context.ssl.php) as parameter/attribute the better option?

> Can these be specified in the connection string for MySQL server? No, only per config and attributes. Idk if mysqlnd has support for the attributes/config.

So I guess I can close this, since is required to implement this upstream into msodbc?

If you have trouble with 500 errors after changing `SECRET_KEY` while using LDAP for authentication you can do the following: 1. Connect to your database 2. Delete the LDAP source...

I initially thought that VARCHR/CHAR were deprecated in SQLServer, but [reading the documentation again](https://learn.microsoft.com/en-us/sql/t-sql/data-types/char-and-varchar-transact-sql?view=sql-server-ver16#:~:text=Starting%20with%20SQL%20Server%202019%20(15.x)%2C%20when%20a%20UTF%2D8%20enabled%20collation%20is%20used%2C%20these%20data%20types%20store%20the%20full%20range%20of%20Unicode%20character%20data%20and%20use%20the%20UTF%2D8%20character%20encoding.) this is far from true: > Starting with SQL Server 2019 (15.x), when a UTF-8 enabled...

I still use NVARCHAR because I had outdated or wrong informations. As of SQLServer 2019 I'll use VARCHAR now with the correct collation set. Therefore I think doctrine/dbal should only...