<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0'
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
    <channel>
        <!-- This XML Feed shows details for the page .NET Firebird -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>.NET Firebird</title>
        <description></description>
        
        <pubDate>Thu, 02 Jun 2005 12:38:03 -0700</pubDate>
        <lastBuildDate>Thu, 02 Jun 2005 10:43:19 -0700</lastBuildDate>
            
        <item>
            <title>Status of the Firebird Tutorial for .NET</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Status+of+the+Firebird+Tutorial+for+.NET/bq5ip</link>
            <description>&lt;p&gt;At the beginning of January I posted a &lt;a href=&quot;http://www.dotnetfirebird.org/blog/2006/01/request-for-ideas-firebird-in-net.html&quot;&gt;Request for Ideas: Firebird in .NET Tutorial&lt;/a&gt;. First of all, thanks to all who contributed their ideas.

&lt;p&gt;I&#039;m currently working hard on the tutorial. The original idea was to write just a quick introduction but it seems there is a lot to tell... The weakest point of Firebird seems to be the lack of freely available documentation - so I decided to invest a little bit more time in the tutorial.

&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Structure&lt;/span&gt;

&lt;p&gt;I have set the structure for the release 1.0 as follows:
&lt;ol&gt;&lt;li&gt;Getting started (installation, management, tools, security)
&lt;/li&gt;&lt;li&gt;Tables (creating, autoincrement fields, indexes, importing data)
&lt;/li&gt;&lt;li&gt;Data types (including BLOB, GUID)
&lt;/li&gt;&lt;li&gt;Executing commands (calling commands from .NET, SELECT, embedded SQL vs. stored procedures, DataSet)
&lt;/li&gt;&lt;li&gt;Transactions (default transaction, isolation levels)
&lt;/li&gt;&lt;li&gt;Stored procedures (executable/selectable, creating, calling, recommendations)
&lt;/li&gt;&lt;li&gt;Character sets (Unicode, problems, recommendations)
&lt;/li&gt;&lt;li&gt;Administration basics (securing the TCP/IP channel, backup, multiple instances)
&lt;/li&gt;&lt;li&gt;Domains (where to use it, useful domains samples)
&lt;/li&gt;&lt;li&gt;Typical tasks (basics of strings, basics of date/time, returning last autoincrement ID, affected row count...)
&lt;/li&gt;&lt;li&gt;Performance (indexes, page size, stored procedures)
&lt;/li&gt;&lt;li&gt;Database refactoring
&lt;/li&gt;&lt;li&gt;Views&lt;/li&gt;&lt;li&gt;Triggers
&lt;/li&gt;&lt;/ol&gt;The emphasis should be on practical experience and recommendations. The following chapters will be the key ones:
&lt;ul&gt;&lt;li&gt;Executing commands&lt;/li&gt;&lt;li&gt;Stored procedures&lt;/li&gt;&lt;li&gt;Typical tasks
&lt;/li&gt;&lt;/ul&gt;This release will be focused on the core knowledge, leaving some topics for the future releases.

&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Future releases&lt;/span&gt;

&lt;p&gt;These topics will be added later:
&lt;ul&gt;&lt;li&gt;Visual Studio .NET integration&lt;/li&gt;&lt;li&gt;Embedded Firebird&lt;/li&gt;&lt;li&gt;Specialities of Firebird and ASP.NET
&lt;/li&gt;&lt;li&gt;.NET Framework 2.0 specific issues&lt;/li&gt;&lt;li&gt;Using Firebird in Mono&lt;/li&gt;&lt;li&gt;Arrays&lt;/li&gt;&lt;li&gt;Events&lt;/li&gt;&lt;li&gt;Services API (backup and restore...)&lt;/li&gt;&lt;/ul&gt;Comment and suggestions are always welcome! Just add comments to this topic.

&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Plan&lt;/span&gt;

&lt;p&gt;I want to publish a draft version by the end of February... Stay tuned!</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:17 -0700</pubDate>
        </item>
            
        <item>
            <title>Calling Stored Procedures from Stored Procedures</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Calling+Stored+Procedures+from+Stored+Procedures/bq5io</link>
            <description>&lt;p&gt;Proper handling of the return values when calling a stored procedure from another stored procedure can be tricky.&amp;nbsp;Here
is the overview of the syntax.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Syntax Overview&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;1. No return values:&lt;/p&gt;
&lt;pre&gt;EXECUTE PROCEDURE procedure_name (parameter, parameter,...);&lt;/pre&gt;
&lt;p&gt;2. Single row returned (there is no SUSPEND in the called procedure):&lt;/p&gt;
&lt;pre&gt;EXECUTE PROCEDURE procedure_name (parameter, parameter,...) RETURING_VALUES :variable1, :variable2;&lt;/pre&gt;
&lt;p&gt;3. Result set returned from a selectable stored procedure (the called procedure uses SUSPEND; no matter how many
rows actually returned):&lt;/p&gt;
&lt;pre&gt;FOR SELECT col1, col2 FROM procedure_name (parameter, parametere, ...) INTO :variable1, :variable2 DO
BEGIN
  -- your code for processing the result set
END&lt;/pre&gt;
&lt;p&gt;&lt;b&gt;Common Firebird Error:&lt;/b&gt; &lt;strong&gt;Multiple Rows in Singleton Select&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Possible causes:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Your are calling EXECUTE PROCEDURE statement and the stored procedure
    returns multiple rows (EXECUTE PROCEDURE expects just a single row).
  &lt;li&gt;You are calling SELECT ... INTO statement in your stored procedure and the
    selection returns multiple rows. If multiple rows are expected, you have to
    use FOR SELECT ... DO statement.&lt;/li&gt;
&lt;/ul&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:17 -0700</pubDate>
        </item>
            
        <item>
            <title>How to Add Firebird .NET Provider 2.0 to Visual Studio 2005</title>
            <link>http://swik.net/Firebird/.NET+Firebird/How+to+Add+Firebird+.NET+Provider+2.0+to+Visual+Studio+2005/bq5in</link>
            <description>Jiri Cincura has provided a step-by-step guide to VS.NET 2005 support installation. You can read the article on his blog: &lt;a href=&quot;http://blog.vyvojar.cz/jirka/archive/2006/02/19/7471.aspx&quot;&gt;DDEX and Firebird .NET Data Provider&lt;/a&gt;.</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:17 -0700</pubDate>
        </item>
            
        <item>
            <title>Data Application Block for Firebird SQL (The Code Project)</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Data+Application+Block+for+Firebird+SQL+%28The+Code+Project%29/bq5im</link>
            <description>&lt;p&gt;&lt;i&gt;The Firebird SQL data application block is intended to speed up development, and it should be used in conjunction with data layer classes in much the same way as Microsoft’s data block. The sample included with this article uses the embedded Firebird SQL database (included in sample) to demonstrate the use of the application block without having to bother setting up a database.&lt;/i&gt;

&lt;p&gt;&lt;i&gt;Firebird SQL data application block was inspired by the Microsoft Application blocks. The block provides overloaded methods to query a Firebird database which return a dataset, data table, or integer in the case of scalar database calls. An additional overload method takes an existing dataset as a parameter and fills the results of a stored procedure send as parameter as well.&lt;/i&gt;

&lt;p&gt;&lt;a href=&quot;http://www.codeproject.com/useritems/DataBlockFirebirdSQL.asp&quot;&gt;Data Application Block for Firebird SQL - The Code Project - C# Database&lt;/a&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:17 -0700</pubDate>
        </item>
            
        <item>
            <title>Updated Firebird Downloads</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Updated+Firebird+Downloads/bq5il</link>
            <description>I&#039;ve updated the &lt;a href=&quot;http://www.dotnetfirebird.org/download/&quot;&gt;downloads page&lt;/a&gt; to show the most recent versions:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;Firebird Server for Windows 1.5.3&lt;/li&gt;&lt;li&gt;Firebird Embedded for Windows 1.5.3&lt;/li&gt;&lt;li&gt;Firebird Server for Windows 2 RC1&lt;/li&gt;&lt;li&gt;Firebird Embedded for Windows 2 RC1&lt;/li&gt;&lt;li&gt;Firebird ADO.NET Provider 1.7.1 for .NET Framework 1.1&lt;/li&gt;&lt;li&gt;FirebirdClient 2 RC3 for .NET Framework 2.0&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Updated Firebrid Downloads</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Updated+Firebrid+Downloads/bq5ik</link>
            <description>New development versions available:
&lt;ul&gt;&lt;li&gt;Firebird Server for Windows 2.0 RC 2
&lt;/li&gt;&lt;li&gt;Embedded Firebird for Windows 2.0 RC 2&lt;/li&gt;&lt;li&gt;FirebirdClient 2.0 RC5 for .NET Framework 2.0
&lt;/li&gt;&lt;/ul&gt;Available in &lt;a href=&quot;http://www.dotnetfirebird.org/download/&quot;&gt;downloads section&lt;/a&gt;.</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Firebird Questions .NET</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Firebird+Questions+.NET/bq5ij</link>
            <description>I&#039;ve just released a new experimental site: &lt;a href=&quot;http://www.firebirdquestions.net/&quot;&gt;http://www.firebirdquestions.net/&lt;/a&gt;.
It is a searchable and browsable archive of &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot;&gt;firebird-net-provider&lt;/a&gt; mailing list.
&lt;p&gt;Noteworthy features:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Updated automatically every 60 seconds&lt;/li&gt;&lt;li&gt;Search is powered by &lt;a href=&quot;http://www.dotlucene.net/&quot;&gt;Lucene.Net&lt;/a&gt; and &lt;a href=&quot;http://www.seekafile.org/&quot;&gt;Seekafile Server&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;You can browse the history by &lt;a href=&quot;http://www.firebirdquestions.net/Threads.aspx&quot;&gt;threads&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;You can skip to next/previous thread by hitting &#039;j&#039;/&#039;k&#039; keys.&lt;/li&gt;&lt;li&gt;All e-mails protected.&lt;/li&gt;&lt;/ul&gt;Comments and suggestions are welcome!</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>How to build Firebird Client 2.0 for .NET Compact Framework</title>
            <link>http://swik.net/Firebird/.NET+Firebird/How+to+build+Firebird+Client+2.0+for+.NET+Compact+Framework/bq5ii</link>
            <description>From &lt;a href=&quot;http://www.firebirdquestions.net/&quot;&gt;Firebird Questions .NET&lt;/a&gt;:
&lt;p&gt;How to compile source code to work with .NET Compact Framework?

&lt;a href=&quot;http://www.firebirdquestions.net/Item.aspx/4302/re_cf&quot;&gt;http://www.firebirdquestions.net/Item.aspx/4302/re_cf&lt;/a&gt;
&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Is it possible to stop/start remote firebird service using Firebird ADO.NET Provider?</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Is+it+possible+to+stop%2Fstart+remote+firebird+service+using+Firebird+ADO.NET+Provider%3F/bq5ih</link>
            <description>&lt;p&gt;&lt;a href=&quot;http://www.firebirdquestions.net/Item.aspx/4265/re_restart_fb_service&quot;&gt;No, it&#039;s not&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;However, you can use this simple code:&lt;/p&gt;
&lt;pre&gt;ServiceController sc = new ServiceController(&quot;FirebirdGuardianDefaultInstance&quot;); // or &quot;FirebirdServerDefaultInstance&quot; if you are not using Guardian

  
Console.WriteLine(&quot;Stopping service...&quot;);
sc.Stop();
   
while (sc.Status != ServiceControllerStatus.Stopped)
 Thread.Sleep(100);
   
Console.WriteLine(&quot;Service stopped.&quot;);

Console.WriteLine(&quot;Starting service...&quot;);
sc.Start();
   
while (sc.Status != ServiceControllerStatus.Running)
 Thread.Sleep(100);
   
Console.WriteLine(&quot;Service started.&quot;);&lt;/pre&gt;
&lt;p&gt;You need to reference System.ServiceProcess.dll and add these usings:&lt;/p&gt;
&lt;pre&gt;using System.ServiceProcess;
using System.Threading;&lt;/pre&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Weekly builds of Firebird ADO.NET Provider</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Weekly+builds+of+Firebird+ADO.NET+Provider/bq5ig</link>
            <description>&lt;p&gt;Weekly builds of Firebird ADO.NET Provider are available at &lt;a href=&quot;http://netprovider.cincura.net/&quot;&gt;http://netprovider.cincura.net/&lt;/a&gt;.
&lt;p&gt;Read more in &lt;a href=&quot;http://www.firebirdquestions.net/Item.aspx/4255/weekly_builds_of_fb_adonet_provider&quot;&gt;the announcement by Jiri Cincura&lt;/a&gt;.</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Common Firebird Errors and Firebird .NET Provider Exceptions</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Common+Firebird+Errors+and+Firebird+.NET+Provider+Exceptions/bq5if</link>
            <description>When working with Firebird in .NET I&#039;ve been collecting Firebird errors and exceptions and their causes. It saved me a lot of time because the exceptions usually came again... I&#039;m sharing my list here - if you have something to add don&#039;t hesitate and add a comment.
&lt;p&gt;&lt;strong&gt;Unable to complete network request to host &quot;localhost&quot; (Provider exception).  &lt;/strong&gt;&lt;/p&gt; &lt;p&gt;The client is not able to connect to the server because of the network.&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;div&gt; &lt;ul&gt;&lt;li&gt;Firebird is not installed on the server.  &lt;/li&gt;&lt;li&gt;Bad host name or IP address.  &lt;/li&gt;&lt;li&gt;Firewall is blocking the Firebird port (default is TCP  3050).&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt; &lt;p&gt;&lt;strong&gt;Unable to load DLL (fbembed) (Provider exception)&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;The Firebird ADO.NET provider is not able to find the fbembed.dll file  (embedded Firebird engine).&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;div&gt; &lt;ul&gt;&lt;li&gt;The file &quot;fbembed.dll&quot; is not in the working directory of your application.  For console or Windows forms applications it is usually the directory with your  .exe file. For ASP.NET applications it&#039;s the system folder (e.g.  C:\WINDOWS\system32].&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt; &lt;p&gt;&lt;strong&gt;Multiple Rows in Singleton Select (Firebird error)&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;You are calling SELECT ... INTO statement in your stored procedure are the  selection returns multiple rows. If multiple rows are expected, you have to use  FOR SELECT ... DO statement.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Internal gds software consistency check (Internal error code (165))  (Firebird error)&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;The database file is corrupted.&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Your are not closing the connection properly. See also &lt;a href=&quot;http://www.dotnetfirebird.org/blog/2005/05/problems-with-creating-new-database.html&quot;&gt;Problems  with Creating a New Database using Embedded Firebird&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Arithmetic exception, numeric overflow or string  truncation (Firebird error)
&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;This error is one of the most frequent ones.&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Too long string assigned to a VARCHAR variable in a stored procedure  (usually hidden because of joining string using || operator).&lt;/li&gt;&lt;li&gt;Mismatch of stored procedure variable type and field type (shorter  varchar(x) in the stored procedure declaration)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Dynamic SQL Error: parameter mismatch for procedure PROCEDURENAME  (Firebird error)&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Wrong number of parameters (too few or too many supplied)  &lt;/li&gt;&lt;li&gt;Wrong stored procedure name&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Conversion error from string &quot;2004-12-14&quot; (Firebird  error)&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Possible causes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Wrong INTO order in a stored procedure&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Invalid token. invalid request BLR at offset 300. parameter mismatch  for procedure PROCEDURENAME (Firebird error)
&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;See &lt;a href=&quot;http://www.delphifaq.com/faq/delphi/database/f42.shtml&quot;&gt;http://www.delphifaq.com/faq/delphi/database/f42.shtml&lt;/a&gt;&lt;/p&gt; &lt;p&gt;It&#039;s not possible to call EXECUTE PROCEDURE that returns something without  RETURNING_VALUES.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Expression evaluation not supported (Firebird error)
&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Calling EXECUTE STATEMENT and joining DATE variable into the SELECT statement  without apostrophes around. E.g. cmd = &#039;SELECT * FROM table WHERE datefield &gt;  &#039; || date;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Search Firebird Questions .NET:&lt;/b&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Unable+to+complete+network+request+to+host+localhost%22&quot;&gt;Unable to complete network request to host localhost&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Unable+to+load+DLL%22&quot;&gt;Unable to load DLL&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Multiple+rows+in+singleton+select%22&quot;&gt;Multiple rows in singleton select&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Arithmetic+exception%2c+numeric+overflow+or+string+truncation%22&quot;&gt;Arithmetic exception, numeric overflow or string truncation&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Parameter+mismatch+for+procedure%22&quot;&gt;Parameter mismatch for procedure&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Conversion+error+from+string%22&quot;&gt;Conversion error from string&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Invalid+token.+invalid+request+BLR+at+offset%22&quot;&gt;Invalid token. invalid request BLR at offset&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Firebird and Multi Version Concurrency Control</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Firebird+and+Multi+Version+Concurrency+Control/bq5ie</link>
            <description>&lt;p&gt;A nice white paper by Roman Rokytskyy that describes the multi version concurrency control system used in Firebird in comparison to IBM DB2 and Oracle 9i.&lt;i&gt;&lt;br/&gt;&lt;br/&gt;So how does it work? The main idea was already presented when we talked about MS Word opening a file in read-only mode, but there are some important details. As the name implies, each record in the system might have multiple versions visible to different transactions. When a transaction modifies a record, a new version is written to the database, and a previous version, representing only the difference between the version of the record that was read by the transaction and the new value of the record, is written as a back version of that record.&lt;/i&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://www.firebirdsql.org/doc/whitepapers/fb_vs_ibm_vs_oracle.htm&quot;&gt;http://www.firebirdsql.org/doc/whitepapers/fb_vs_ibm_vs_oracle.htm&lt;/a&gt;&lt;br/&gt;&lt;a href=&quot;aboutblank&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Search Firebird Questions .NET:&lt;/b&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=Oracle&quot;&gt;Oracle&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=DB2&quot;&gt;DB2&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Firebird Generators: Everything you wanted to know</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Firebird+Generators%3A+Everything+you+wanted+to+know/bq5id</link>
            <description>&lt;p&gt;This is a very nice article about Firebird generators: &lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm&quot;&gt;Firebird Generator Guide&lt;/a&gt;
&lt;/p&gt;&lt;p style=&quot;font-style: italic;&quot;&gt;Show what a Generator is in Firebird and how and why to use it. This is the attempt to collect all relevant information about Generators in a single document - hope it works, too...
Who should read it?
&lt;/p&gt;&lt;p style=&quot;font-style: italic;&quot;&gt;Read this article if you:
&lt;/p&gt;&lt;ul style=&quot;font-style: italic;&quot;&gt;&lt;li&gt;are not familiar with the concept of Generators&lt;/li&gt;&lt;li&gt;have questions on using them&lt;/li&gt;&lt;li&gt;want to make an Integer column behave like an &quot;AutoInc&quot; field as found in other RDBMSs&lt;/li&gt;&lt;li&gt;are looking for examples on how to use Generators for IDs or other tasks&lt;/li&gt;&lt;li&gt;want to know the Firebird word for a &quot;sequence&quot; in Oracle ;-)&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;Table of contents:

&lt;p&gt;
&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Chapter_1&quot;&gt;&lt;b&gt;Chapter 1: Generator        basics&lt;/b&gt;&lt;/a&gt;        &lt;div&gt;                 &lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#What_is_a_generator&quot;&gt;What is a
      Generator?&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Where_are_Generators_stored&quot;&gt;Where are            Generators
      stored?&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#What_is_the_maximum_value_of_a_Generator&quot;&gt;What            is the maximum value of a
      Generator?&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_many_Generators_are_available_in_one_database&quot;&gt;How            many Generators are available in one
      database?&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_and_Transactions&quot;&gt;Generators                      and Transactions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#SQL_Syntax_for_Generators&quot;&gt;SQL            Syntax overview for Generators&lt;/a&gt;         &lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;                          &lt;p&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Chapter_2&quot;&gt;&lt;b&gt;Chapter 2: Using Generators (in
general)&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;         &lt;div&gt;                 &lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_create_a_Generator&quot;&gt;How to create a Generator (&quot;Insert&quot;)&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_get_the_current_value&quot;&gt;How to get the current value&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_generate_a_new_value&quot;&gt;How to generate a new value&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_set_a_Generator&quot;&gt;How to set a Generator to a certain value&lt;/a&gt;          &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_drop_a_Generator&quot;&gt;How to drop a Generator&lt;/a&gt;         &lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;                          &lt;p&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Chapter_3&quot;&gt;&lt;b&gt;Chapter 3: Using Generators to create        unique row IDs&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;         &lt;div&gt;                 &lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Why_row_IDs_at_all&quot;&gt;Why row IDs at
      all?&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#One_for_all_or_one_for_each&quot;&gt;One for all or one for
      each?&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Can_you_re_use_Generator_values&quot;&gt;Can you re-use Generator
      values?&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_for_IDs_or_AutoInc_fields&quot;&gt;Generators                      for IDs or AutoInc fields&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Why_you_should_get_an_ID_before_Insert&quot;&gt;Why you should get an ID Generator value *before*            you insert a new record&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Why_it_is_difficult_to_maintain_pure_sequences&quot;&gt;Why it is difficult to maintain a &quot;pure&quot;            sequence
      (without gaps)&lt;/a&gt;         &lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;                          &lt;p&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Chapter_4&quot;&gt;&lt;b&gt;Chapter 4: Using Generators with IBObjects&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;         &lt;div&gt;                 &lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_manually_get_a_generator_value&quot;&gt;How to manually get a generator value and/or change            it&lt;/a&gt;           &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#How_to_let_IBO_do_the_ID_work_for_you&quot;&gt;How to let IBO do the ID work for you&lt;/a&gt;         &lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;                          &lt;p&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Chapter_5&quot;&gt;&lt;b&gt;Chapter 5: What else to do with Generators&lt;/b&gt;&lt;/a&gt;&lt;b&gt;              ( and why most of it won&#039;t work ;-)&lt;/b&gt;&lt;/p&gt;         &lt;div&gt;                 &lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Request_for_more_ideas&quot;&gt;Request for                      more ideas&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_for_numbering_solitaire_processes&quot;&gt;Generators for numbering &quot;solitaire&quot; processes, i.e.                      naming output files&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_as_usage_counters_for_SPs&quot;&gt;Generators as &quot;usage counters&quot; for Triggers            / SPs to provide basic statistics&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_to_simulate_Select_count&quot;&gt;Generators to simulate
      &amp;quot;Select count(*) from...&amp;quot;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Generators_to_monitor_SPs&quot;&gt;Generators                      to monitor / control long-running StoredProcs&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;                          &lt;p&gt;&lt;a href=&quot;http://www.fingerbird.de/generatorguide_body.htm#Glossary&quot;&gt;&lt;b&gt;Glossary&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Search Firebird Questions .NET:&lt;/b&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=Sequence&quot;&gt;Sequence&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=Generator&quot;&gt;Generator&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:16 -0700</pubDate>
        </item>
            
        <item>
            <title>FirebirdClient 2.0 for .NET Framework 2.0 released</title>
            <link>http://swik.net/Firebird/.NET+Firebird/FirebirdClient+2.0+for+.NET+Framework+2.0+released/bq5ic</link>
            <description>The final version of the Firebird ADO.NET client for .NET Framework 2.0 is here. This is a summary of the new features:
&lt;ul&gt;&lt;li&gt;Visual Studio 2005 integration of the provider using a DDEX provider&lt;/li&gt;&lt;li&gt;Support for the new INSERT ... RETURNING statement of Firebird v2.0&lt;/li&gt;&lt;li&gt;Support for the new PSQL stack trace of Firebird v2.0&lt;/li&gt;&lt;li&gt;New CAS support FirebirdClientPermission and FirebirdClientPermissionAttribute classes&lt;/li&gt;&lt;li&gt;Added support to the new CREATE SEQUENCE statement to the FbBatchExecution class.&lt;/li&gt;&lt;li&gt;Implemented FbParameterCollection.AddWithValue
&lt;/li&gt;&lt;li&gt;New GDS implementation for the Firebird/Fyracle External Proceudre engine implementation.&lt;/li&gt;&lt;li&gt;Added a new namespace FirebirdSql.Data.StoredProcedureEngine with two new classes: FbResultSet, FbTriggetContext&lt;/li&gt;&lt;li&gt;Added initial support for boolean input parameters.&lt;/li&gt;&lt;li&gt;[DDEX] Foreign keys should be now automaticalled added to DataSets at design time when dropping tables from the Server Explorer.&lt;/li&gt;&lt;li&gt;Added correct support for the new .net 2.0 DbParameter.SourceColumnNullMapping property (Alexander V. Leshkin)&lt;/li&gt;&lt;li&gt;Initial implementation of the new extended support for char/varchar fields with OCTETS character set.&lt;/li&gt;&lt;li&gt;Added initial support for EXECURE PROCEDURE commands in FbBatchExecution class.&lt;/li&gt;&lt;li&gt;Added new Connection String parameter &quot;Context Connection&quot; to be used with .NET stored procedure implementations for Fyracle.&lt;/li&gt;&lt;li&gt;Added new UTF8 ( Firebird 2.0 only ) character set.&lt;/li&gt;&lt;li&gt;Added a new Role Provider implementation ( FirebirdSql.Web.Providers assembly )
&lt;/li&gt;&lt;/ul&gt;The new version is available in the &lt;a href=&quot;http://www.dotnetfirebird.org/download/&quot;&gt;downloads&lt;/a&gt; section.

&lt;p&gt;&lt;b&gt;Search Firebird Questions .NET:&lt;/b&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22Server+Explorer%22&quot;&gt;Server Explorer&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=FirebirdClient&quot;&gt;FirebirdClient&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=FirebirdClientPermission&quot;&gt;FirebirdClientPermission&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=%22CREATE+SEQUENCE%22&quot;&gt;CREATE SEQUENCE&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=FbParameterCollection&quot;&gt;FbParameterCollection&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=FbBatchExecution&quot;&gt;FbBatchExecution&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=UTF8&quot;&gt;UTF8&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.firebirdquestions.net/Search.aspx?q=GDS&quot;&gt;GDS&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>Firebird Tutorial for .NET 2.0</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Firebird+Tutorial+for+.NET+2.0/bq5ib</link>
            <description>&lt;p&gt;I&#039;ve been promising the &lt;a href=&quot;http://www.dotnetfirebird.org/blog/2006/01/request-for-ideas-firebird-in-net.html&quot;&gt;Firebird Tutorial for .NET&lt;/a&gt; for a long time.

&lt;p&gt;Now there is a first &quot;beta&quot; version: &lt;a href=&quot;http://www.firebirdtutorial.net/&quot;&gt;http://www.firebirdtutorial.net/&lt;/a&gt;. I decided to start with the .NET 2.0 topics - a lot of interesting things happen around FirebirdClient 2.0 and there is not much documentation about it (unless you are a fan of &lt;a href=&quot;http://www.firebirdquestions.net/&quot;&gt;mailing list browsing&lt;/a&gt;).

&lt;p&gt;The tutorial is far from complete but I would like to point out some interesting topics:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.firebirdtutorial.net/firebird-and-visual-studio-net-2005.html&quot;&gt;Firebird and Visual Studio .NET 2005&lt;/a&gt; screenshot guides
&lt;li&gt;&lt;a href=&quot;http://www.firebirdtutorial.net/dbproviderfactory.html&quot;&gt;DbProviderFactory&lt;/a&gt; generic database access
&lt;li&gt;&lt;a href=&quot;http://www.firebirdtutorial.net/sqldatasource.html&quot;&gt;SqlDataSource&lt;/a&gt; and Firebird
&lt;li&gt;&lt;a href=&quot;http://www.firebirdtutorial.net/storing-connection-string-in-web-config.html&quot;&gt; Storing connection string in web.config&lt;/a&gt;
&lt;/ul&gt;

&lt;p&gt;I also want to thank you for all the comments at the blog posts and e-mails. Although I&#039;m not able to answer to all of them I&#039;m trying to reply by writing new articles. The same applies to the tutorial: If you have a sample code, an interesting note, or something else to add just add a comment to this post or use the feedback e-mail: fbtutorial [at] annpoint.com.</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>Firebird and Visual Studio .NET 2005 Data Designer Access (DDEX)</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Firebird+and+Visual+Studio+.NET+2005+Data+Designer+Access+%28DDEX%29/bq5ia</link>
            <description>&lt;p&gt;There is a new chapter in the &lt;a href=&quot;http://www.firebirdtutorial.net&quot;&gt;Firebird Tutorial for .NET&lt;/a&gt;: &lt;a href=&quot;http://www.firebirdtutorial.net/firebird-data-access-designer-ddex-installation.html&quot;&gt; Firebird Data Access Designer (DDEX) installation&lt;/a&gt;.

&lt;p&gt;Follow these instructions to get Firebird support in the Visual Studio .NET 2005 (Standard and up):

&lt;ul&gt;
   &lt;li&gt;Browse Firebird databases in the Server Explorer
   &lt;li&gt;Use &quot;Configure Data Source&quot; Wizard to configure &lt;a href=&quot;http://www.firebirdtutorial.net/sqldatasource.html&quot;&gt;SqlDataSource&lt;/a&gt; component
   &lt;li&gt;Connection Properties editor
   &lt;li&gt;etc.
&lt;/ul&gt;

&lt;p&gt;No need for &lt;a href=&quot;http://www.firebirdquestions.net/Item.aspx/4546/re_firebird_provider_installation&quot;&gt;Visual Studio SDK!&lt;/a&gt;&lt;/p&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>Offtopic: MenuPilot 1.0 - Open-Source Task Menu for ASP.NET 2.0</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Offtopic%3A+MenuPilot+1.0+-+Open-Source+Task+Menu+for+ASP.NET+2.0/bq5h9</link>
            <description>&lt;p&gt;I&#039;ve just released my new open-source control: &lt;b&gt;&lt;a href=&quot;http://www.menupilot.org/&quot;&gt;MenuPilot 1.0&lt;/a&gt; - fine DHTML context menu with layout of Action Lists/Smart Tags (known from Visual Studio.NET 2005)&lt;/b&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.menupilot.org/demo/&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;http://www.dotnetfirebird.org/blog/uploaded_images/table-new-720619.png&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check the &lt;a href=&quot;http://www.menupilot.org/demo/&quot;&gt;live demo&lt;/a&gt; and see what it is and how it can help you.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Features&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Customizable hint icon.  &lt;/li&gt;&lt;li&gt;Customizable colors.  &lt;/li&gt;&lt;li&gt;Supports data binding.  &lt;/li&gt;&lt;li&gt;Supports menu item separators.  &lt;/li&gt;&lt;li&gt;Full Visual Studio .NET 2005 design-time support.  &lt;/li&gt;&lt;li&gt;Compiled for ASP.NET 2.0.  &lt;/li&gt;&lt;li&gt;Available for 3 inline ASP.NET controls: HyperLink, Label and Image.  &lt;/li&gt;&lt;li&gt;Menu items can have Title and Target specified.  &lt;/li&gt;&lt;li&gt;Menu items can execute javascript or go to URL.  &lt;/li&gt;&lt;li&gt;Includes fix for Internet Explorer z-index bug.  &lt;/li&gt;&lt;li&gt;Includes fix for Internet Explorer windowed controls z-index bug.&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;&lt;b&gt;Browsers&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Tested with Firefox 1.5  &lt;/li&gt;&lt;li&gt;Tested with Internet Explorer 6.0 (should support 5.5+)&lt;/li&gt;&lt;/ul&gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;Links&lt;/span&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.menupilot.org/&quot;&gt;MenuPilot Home&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.menupilot.org/download.html&quot;&gt;MenuPilot Download&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.menupilot.org/tutorial.html&quot;&gt;MenuPilot Tutorial&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.menupilot.org/demo/&quot;&gt;MenuPilot Demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>FirebirdClient 2.0.1 released</title>
            <link>http://swik.net/Firebird/.NET+Firebird/FirebirdClient+2.0.1+released/bq5h8</link>
            <description>&lt;p&gt;Carlos Guzmán Álvarez announced &lt;a href=&quot;http://www.firebirdquestions.net/Item.aspx/5079/ann_firebirdclient_v201_released&quot;&gt;new FirebirdClient release&lt;/a&gt;.

&lt;p&gt;There are now four packages:
&lt;ul&gt;&lt;li&gt;FirebirdClient 2.0.1 for .NET Framework 2.0&lt;/li&gt;&lt;li&gt;FirebirdClient 2.0.1 for .NET Compact Framework 2.0&lt;/li&gt;&lt;li&gt;FirebirdClient 2.0.1 for Mono 1.1.18+&lt;/li&gt;&lt;li&gt;FirebirdClient DDEX Provider 2.0.1 (Visual Studio 2005 design-time support)
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;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.
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Links:&lt;/span&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.dotnetfirebird.org/download/&quot;&gt;Downloads&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://sourceforge.net/project/shownotes.php?release_id=458871&amp;group_id=9028&quot;&gt;FirebirdClient 2.0.1 Release Notes&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://sourceforge.net/project/shownotes.php?release_id=458871&amp;amp;group_id=9028&quot;&gt;FirebirdClient DDEX Provider 2.0.1 Release Notes&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.firebirdtutorial.net/&quot;&gt;Firebird Tutorial for .NET 2.0&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>Checking if a record exists in Firebird (EXISTS function)</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Checking+if+a+record+exists+in+Firebird+%28EXISTS+function%29/bq5h7</link>
            <description>&lt;p&gt;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:&lt;/p&gt;

&lt;pre&gt;SELECT count(*) FROM company WHERE companyid = :id INTO :idexists;&lt;/pre&gt;

&lt;p&gt;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).&lt;/p&gt;

&lt;p&gt;If you use EXISTS() it will stop when it finds the first one - so it&#039;s much faster!&lt;/p&gt;

&lt;pre&gt;idexists = 0;
SELECT 1 FROM rdb$database WHERE EXISTS(SELECT * FROM company WHERE companyid = :id) INTO :idexists;&lt;/pre&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>New forums on DotNetFirebird</title>
            <link>http://swik.net/Firebird/.NET+Firebird/New+forums+on+DotNetFirebird/bq5h6</link>
            <description>Because I&#039;m not able to reply to all the questions about Firebird and .NET I&#039;m getting, I&#039;ve set up a new place to ask these questions: &lt;a href=&quot;http://forums.dotnetfirebird.org&quot;&gt;http://forums.dotnetfirebird.org&lt;/a&gt;.

I&#039;ll try to answer the questions if I know the answer. You might also get an answer from someone else if I&#039;m too busy ;-).</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
        <item>
            <title>Updated Firebird &amp; FirebirdClient Downloads</title>
            <link>http://swik.net/Firebird/.NET+Firebird/Updated+Firebird+%26+FirebirdClient+Downloads/bq5h5</link>
            <description>I&#039;ve updated the &lt;a href=&quot;http://www.dotnetfirebird.org/download/&quot;&gt;downloads&lt;/a&gt; page on &lt;a href=&quot;http://www.dotnetfirebird.org/&quot;&gt;DotNetFirebird&lt;/a&gt;:
&lt;ul&gt;&lt;li&gt;Firebird Server for Windows 1.5.4&lt;/li&gt;&lt;li&gt;Firebird Server for Windows 2.0.0&lt;/li&gt;&lt;li&gt;Embedded Firebird for Windows 1.5.4&lt;/li&gt;&lt;li&gt;Embedded Firebird for Windows 2.0.0&lt;/li&gt;&lt;li&gt;FirebirdClient 2.1.0 beta 2 for .NET Framework 2.0
&lt;/li&gt;&lt;/ul&gt;</description>
            
            <pubDate>Tue, 23 Oct 2007 13:22:15 -0700</pubDate>
        </item>
            
    </channel>
</rss>
