[DUG] Datebases with Delphi

2007-07-02 Thread Nick
Hi there :-) When I create a database application, usually I create a MDB file with Access (create my tables etc) and then interact with the database in Delphi using TAdoConnection and TAdoQuery. What other standalone database's can I use with Delphi2006 Ent which, I can ship to the customer

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Steve Peacocke
Take a good look at ElevateDB from http://www.elevatesoft.com/ This is a reasonably full SQL compliant database that can compile directly into your code so you don't have to ship anything except your exe program. ElevateDB is the newer version of the old and trusted DBISAM database. It can be

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Edward Koryagin
If you database is small - use TClientDataSet... --- Nick [EMAIL PROTECTED] wrote: Hi there :-) When I create a database application, usually I create a MDB file with Access (create my tables etc) and then interact with the database in Delphi using TAdoConnection and TAdoQuery. What

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Richard Vowles
Hi Nick, The next release of Delphi includes SQL Data Store (the .NET version of JDataStore). It fits that profile perfectly, it works with Delphi 32 and Delphi .NET but via DBX4. Nick wrote: Hi there :-) When I create a database application, usually I create a MDB file with Access (create

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Steve Peacocke
And if you are just after single user databases then there's always kbmMemtable from http://www.components4programmers.com/products/kbmmemtable/ Steve On 03/07/07, Nick [EMAIL PROTECTED] wrote: Hi there :-) When I create a database application, usually I create a MDB file with Access (create

Re: [DUG] Datebases with Delphi

2007-07-02 Thread bevan
Hi Nick What other standalone databaseĀ“s can I use with Delphi2006 Ent which, I can ship to the customer without them having to install anything special. I often use Accuracer (http://www.aidaim.com), which also has a GUI for creating/editing/modifying tables and suchlike. As well as a way

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Steve Peacocke
ElevateDB comes with a tool for creating / modifying the database, SQL testing, creating triggers, stored procedures and functions, views etc. It can also create in-memory tables that interact with external tables in the same way as any other ElevateDB table. I once wrote a SQL tool for its

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Jeremy Coulter
] To: NZ Borland Developers Group - Delphi List delphi@delphi.org.nz Date: Tue, 3 Jul 2007 10:42:03 +1200 Subject: Re: [DUG] Datebases with Delphi ElevateDB comes with a tool for creating / modifying the database, SQL testing, creating triggers, stored procedures and functions, views etc. It can

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Steve Peacocke
2005 Express, I need to convert them over to ADO, but thats another story :-) Jeremy -Original Message- From: Steve Peacocke [EMAIL PROTECTED] To: NZ Borland Developers Group - Delphi List delphi@delphi.org.nz Date: Tue, 3 Jul 2007 10:42:03 +1200 Subject: Re: [DUG] Datebases with Delphi

RE: [DUG] Datebases with Delphi

2007-07-02 Thread Paul Heinz
Jeremy wrote: I too develped using the ElevateDB predecessor, that was, until I tried to use it in a client server arrangment, and THEN it all turned to POOH !!! It had SERIOUS issues with indexing, and in some cases, it would transfer around the entire table to update just ONE field !

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Robert martin
] To: NZ Borland Developers Group - Delphi List delphi@delphi.org.nz Date: Tue, 3 Jul 2007 10:42:03 +1200 Subject: Re: [DUG] Datebases with Delphi ElevateDB comes with a tool for creating / modifying the database, SQL testing, creating triggers, stored procedures and functions

Re: [DUG] Datebases with Delphi

2007-07-02 Thread Nick
] To: NZ Borland Developers Group - Delphi List delphi@delphi.org.nz Date: Tue, 3 Jul 2007 10:42:03 +1200 Subject: Re: [DUG] Datebases with Delphi ElevateDB comes with a tool for creating / modifying the database, SQL testing, creating triggers, stored procedures and functions, views