NETProvider
NETProvider copied to clipboard
Firebird ADO.NET Data Provider
_Based on #1200 for now. I will rebase it with latest `master` in the future._ - Rename project `Perf` to `FirebirdSql.Data.FirebirdClient.Benchmarks`. - Update project to use .NET8. - Upgrade BenchmarkDotNet...
When I am setting the parameter StatementTimeout = 1 in Firebird.conf OR if I am setting the parameter command timeout=1; in the connection string When a statement is executed but...
this fix skips index malformed or empty. it fix issue #1188
Hi. Have a problem connection to a database using a password that has special Norwegian chars on it (æøå). Although I'm able to login using, for instance, DBeaver, I'm not...
Firebird 6 introduces the CALL statement as an alternative to call executable stored procedures and excluding/limiting "out" parameters, and support for explicitly identifying the procedure or function parameter by name...
I want to propose set of changes aimed at improving performance, which I have implemented and used for some time in my (private) projects. The main goal of these changes...
I don't think that was how you intended to calculate offset there (the i starts with offset and is then added with offset again, also it performs byte writing count-offset...
```sql create table mytable(field integer default 10); ``` ```cs var tbl = new DataTable(); using var adp = new FbDataAdapter("select * from mytable", _cn); adp.Fill(tbl); //tbl.Columns[0].DefaultValue = 10; DataGrid.DataSource =...
**Actual Result** - .NET Provider is using _Arc4_ Wire Crypt Plugin instead of _ChaCha64_ in _Srp256_ Authentication Method. **Expected Result** - .NET Provider should use _ChaCha64_ Wire Crypt Plugin in...