4 key distinctions of the new IBProvider v3.4 that make your applications faster
4 key distinctions of the new IBProvider v3.4 that make your applications faster:
Please read details here: Firebird driver become faster
4 key distinctions of the new IBProvider v3.4 that make your applications faster:
Please read details here: Firebird driver become faster
Do you want to enable execution of SQL scripts in your programs and spend less time for exhausting coding?
Do you want to create a table, a generator and a trigger, to add data to the table, to make data selection and then to delete all this in one command? For example:
set autoddl on;
set transaction;
create generator GEN_ID_TEST_TABLE;
create table TEST_TABLE (ID INTEGER NOT NULL PRIMARY KEY,TEXT BLOB SUB_TYPE TEXT);
create trigger BI_TEST_TABLE for TEST_TABLE
before insert
as
begin
if(NEW.ID IS NULL) then NEW.ID=GEN_ID(GEN_ID_TEST_TABLE,1);
end;
insert into TEST_TABLE (text) values('record 1');
insert into TEST_TABLE (text) values('record 2');
set term !!;
select * from TEST_TABLE!!
set terminator ;!!
TEST_TABLE;
set autoddl off;
drop table TEST_TABLE;
drop generator GEN_ID_TEST_TABLE;
commit;
Now it is possible with new IBProvider! IBProvider v.3.3.0.11117 allows to run a command with several SQL queries (SQL scripts).
Read more right now:
Know how to add execution of SQL-scripts for Firebird and Interbase in your programs!
Have you ever lost microseconds when working with the type TIME?
Definitely, if you have ever tried to use them. In the previous versions of IBProvider, time was stored in OLE DB structure of DBTYPE_DBTIME type that does not support fractions of a second.
In the new IBProvider version, time data types have been improved. The new properties dbtime_rules and dbtimestamp_rules allow to set time storage not only in DBTIME/DBTIMESTAMP but also in WSTR and in the new type of MS SQL 2008 – DBTIME2 without losing milliseconds.
Please, read more and download new IBProvider Professional right now: Download Firebird OLE DB driver.
Today we are (IBProvider team) overwhelmingly happy because we have finally released the final build of the 3rd version of IBProvider.
Of course, you can write it! All you need is a strong desire and 7 years of free time. Exactly the same time it took us to write the third version of IBProvider.
Please read about development results here and download new Firebird driver here:
Firebird driver developers results
—
Regards, IBProvider Team.
In the new article we describe a new feature of IBProvider – supporting ADOX.Library.
There are 2 examples on Visual C# and VBScript which describe how to create Firebird database using ADODB Extensions.
See details here:
Create Firebird or Interbase database (ADOX, Visual C# .NET, VBScript)
New IBProvider 3.0.0.9322 RC4 release appeared.
Please visit IBProvider official site and get your new driver version and find more examples for new release: Firebird driver – 3.0.0.9322 RC4.
Would you like to know how to avoid error messages like ‘arithmetic exception, numeric overflow, or string truncation’? in Firebird DBMS?
Please read related article here:
Three Reasons Why You Should Upgrade to the New IBProvider
New version of IBProvider is now available. The new release:
Quite recently, Firebird 2.5 Release Candidate 2 appeared. During regular IBProvider testing with new FB2.5 SuperClassic (RC2), we revealed a problem in the server: page 14194, page type 5 lock conversion denied (215).
The first person who publishes the reproduced example at our forum will be awarded with a free license for IBProvider Professional 64 bits Single Developer!
Please visit Firebird driver homepage for details.
Today, on January 18, 2010, IBProvider celebrates its 10th anniversary. The grand banquet is preceded by the release of the latest IBProvider version with enhanced support of DDL and updatable rowsets.
We are glad to announce the release of new IBProvider Professional v3.0.0.7866.
In the new IBProvider version, we removed the cause of low performance of IBProvider builds compiled in Visual Studio. Now these builds work several times faster in both single-threaded and multi-threaded applications.
According to the test results, new IBProvider Professional v3 works 4.5 faster than the former versions.
Performance comparison graph here.
Source Fiebird driver homepage.