Soonhuat, Just to partially repeat what others have said and add my £0.01 worth: a) You should really not use the BDE against Interbase/Firebird. Instead, rather use Firbird specific components, OR use the Firebird ODBC driver with ADO (for example) instead. (See: http://ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_60_odbc The page also includes examples with ADO.) b) You should really generally avoid the BDE these days, as it's not being developed anymore. (Prefer one of ADO, DBExpress etc. ) c) You should really (almost) never use TTable against a server based database (such as Interbase.) TTables are meant for file based databases that supports random access semantics (like Paradox, Access etc.) Using TTable against set oriented (SQL based) databases can quickly cause severe performance degradation as the database grows larger. For set oriented databases (such as Interbase) rather use query based components.
Best of luck, Walter ----- Original Message ----- From: "soonhuat ong" <[EMAIL PROTECTED]> To: <[email protected]> Sent: Friday, July 01, 2005 11:40 AM Subject: [list] RE: [delphi-en] Firebird BDE driver~~ > Thanks a lot dude. The component that I'll be using is TTable. The reason > i want to create an alias is because i want to set the TTable's > 'DATABASENAME' property to the alias i have created. Therefore. all my > dataset component will be assigned to this alias. There's no way to do it > huh ?? Or is there any better way ? I would prefer to use TTable cause i'm > more familiar with it, and quite new with other component. > Anyway, I'll be away for 2 days and get back on monday.. Hope to get the > solution when i'm back. Thanks again. ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

