Hi,

AFAIK, Firebird never had the convention to use '.fb' as extension for the database files. The convention is to use the extension '.fdb'.

Here is a little patch to change the filter in TSQLFirebirdFileNamePropertyEditor.

regards,
--
Dimitrios Chr. Ioannidis


Index: registersqldb.pas
===================================================================
--- registersqldb.pas   (revision 16021)
+++ registersqldb.pas   (working copy)
@@ -100,7 +100,7 @@
 
 function TSQLFirebirdFileNamePropertyEditor.GetFilter: String;
 begin
-  Result := sFireBirdDatabases+' (*.fb)|*.fb;*.fdb';
+  Result := sFireBirdDatabases+' (*.fdb)|*.fdb;*.FDB';
   Result := Result + sInterbaseDatabases  +' (*.gdb)|*.gdb;*.GDB';
   Result:= Result+ '|'+ inherited GetFilter;
 end;
_______________________________________________
fpc-devel maillist  -  [email protected]
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to