NETProvider
NETProvider copied to clipboard
Firebird ADO.NET Data Provider
As described in https://github.com/FirebirdSQL/jaybird/issues/692.
I have the following query ``` select ABS(t1.DB + t1.CR), t1.AdjustId from TabAdjustAccount as t1 JOIN TabAdjust as t2 on t1.AdjustId = t2.AdjustId where t1.AccType = 1 and t2.EffectiveDate >=...
Submitted by: Baldur Fürchau (bfuerchau) If i work with named FbParameter, Upadates/Inserts slow down\. The reason seams to be, the often is used \_parametes\.IndexOf\(\) or \_Parameter\.Contains\(\)\. The ILIst is slow...
If I have a connection string like: `User=SYSDBA;Password="""'""''";Database=testDb;DataSource=localhost;Port=3051;Dialect=3;Charset=UTF8;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=500;Packet Size=8192;ServerType=0` I suppose it should work and the password should be parsed as "'"''. Obviously, there is problem in a regex...
A lot of "dispose" methods in the provider contain historically stuff like `_foo = null` or `_foo = 0` (basically setting to default). This is not needed and should be...