| DotNetFirebird Using Firebird SQL in .NET. |
|
Home
Features
Download
Documentation
FAQ
Tools and Code
About
Blog
|
Monday, March 26, 2007
DotNetFirebird goes to Firebird FoundationI've agreed with Helen Borrie from Firebird Foundation that DotNetFirebird documentation will be donated to FF. So on 1 May 2007, dotnetfirebird.org and firebirdtutorial.net will be closed and the content will be moved to www.firebirdsql.org (to be integrated into the project documentation). Wednesday, March 14, 2007
Sample code on DotNetFirebird forums
Check the recent topics on DotNetFirebird forums (with sample code):
Tuesday, February 20, 2007
Latest Q&A on DotNetFirebird forums
Latest topics from DotNetFirebird forums:
Monday, February 19, 2007
"Using an Embedded Firebird" example
Sean Riley shares his experience with getting the embedded Firebird to work with FirebirdClient 2.0 in our forums.
If you have anything to add, you can join the discussion.
Updated Firebird & FirebirdClient Downloads
I've updated the downloads page on DotNetFirebird:
Sunday, February 18, 2007
New forums on DotNetFirebird
Because I'm not able to reply to all the questions about Firebird and .NET I'm getting, I've set up a new place to ask these questions: http://forums.dotnetfirebird.org.
I'll try to answer the questions if I know the answer. You might also get an answer from someone else if I'm too busy ;-).
Tuesday, November 21, 2006
Checking if a record exists in Firebird (EXISTS function)If you need to check whether certain record exists the usual way is to execute the following command and then check if the :idexists variable is greater than zero (this is an example from a stored procedure: SELECT count(*) FROM company WHERE companyid = :id INTO :idexists; But the right way to do this is to use EXISTS() function. If you use COUNT(*) Firebird will be looking for all item that fit the condition (i.e. companyid = :id). If you use EXISTS() it will stop when it finds the first one - so it's much faster! idexists = 0; SELECT 1 FROM rdb$database WHERE EXISTS(SELECT * FROM company WHERE companyid = :id) INTO :idexists; Saturday, October 28, 2006
FirebirdClient 2.0.1 releasedCarlos Guzmán Álvarez announced new FirebirdClient release. There are now four packages:
Finally there is an official build for .NET Compact Framework 2.0. The DDEX Provider (that provides Visual Studio 2005 design-time support) is now in a separate package. Links: Previous
Archives
Copyright © 2005 - 2007 DotNetFirebird |