 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
hclarius Guest
|
Posted: Thu Oct 09, 2003 9:27 am Post subject: Which DB to Use for CDROM |
|
|
Using D7 Pro, I need to develop database application (read only) which will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
|
| Back to top |
|
 |
George Christoforakis Guest
|
Posted: Thu Oct 09, 2003 10:30 am Post subject: Re: Which DB to Use for CDROM |
|
|
I've seen a few years ago a telephone catalogue software. The database was
the fox_pro.
George Christoforakis.
"hclarius" <hfclarius (AT) nospamcomcast (DOT) net> wrote
| Quote: | Using D7 Pro, I need to develop database application (read only) which
will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I
can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
|
|
| Back to top |
|
 |
Gert Kello Guest
|
Posted: Thu Oct 09, 2003 12:15 pm Post subject: Re: Which DB to Use for CDROM |
|
|
| Quote: | Using D7 Pro, I need to develop database application (read only) which will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
I would stronlgy reccomend not using BDE.
But to suggest the database I should know the ampount of data that needs
to be handled by application. If the amount is reasonable, You could use
either Clientdataset in local mode, or some other inmemory datasets
(like kbmMemTable).
If the application has to handle large amount of data, You should search
some more "real" database engine, which is either contained is
executable or or very easy to install. Advantage is one possibility,
and, if I'm not wrong, Firebird has "embed" option where the whole
engine is contained in the gds32.dll...
--
Gert
|
|
| Back to top |
|
 |
heiko Luettge Guest
|
Posted: Thu Oct 09, 2003 5:00 pm Post subject: Re: Which DB to Use for CDROM |
|
|
With Interbase (6 and above) you can create readoynl databases
Heiko
|
|
| Back to top |
|
 |
hclarius Guest
|
Posted: Thu Oct 09, 2003 9:44 pm Post subject: Re: Which DB to Use for CDROM |
|
|
George Christoforakis wrote:
| Quote: | I've seen a few years ago a telephone catalogue software. The database was
the fox_pro.
George Christoforakis.
"hclarius" <hfclarius (AT) nospamcomcast (DOT) net> wrote in message
news:3f8529ec (AT) newsgroups (DOT) borland.com...
Using D7 Pro, I need to develop database application (read only) which
will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I
can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
Actually, the problem has to do with putting "some" database on a CDROM
and then placing an application which accesses (via TADODataset) the
database on the same CDROM. An application which you write to query
some table in a simple datbase on your hard drive or even a CDROM with
"fixed" designation, may not run properly from the CDROM with the database.
I need some code snippet or instructions on how to set the data base
and/or application.
Thanks
|
|
| Back to top |
|
 |
hclarius Guest
|
Posted: Thu Oct 09, 2003 9:45 pm Post subject: Re: Which DB to Use for CDROM |
|
|
Gert Kello wrote:
| Quote: | Using D7 Pro, I need to develop database application (read only) which
will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application
bombs
when I try to go through the individual records from the ADODataset.
I can
display a table with some basic where clause in a DBGRID.
Any suggestions?
I would stronlgy reccomend not using BDE.
But to suggest the database I should know the ampount of data that needs
to be handled by application. If the amount is reasonable, You could use
either Clientdataset in local mode, or some other inmemory datasets
(like kbmMemTable).
If the application has to handle large amount of data, You should search
some more "real" database engine, which is either contained is
executable or or very easy to install. Advantage is one possibility,
and, if I'm not wrong, Firebird has "embed" option where the whole
engine is contained in the gds32.dll...
|
Actually, the problem has to do with putting "some" database on a CDROM
and then placing an application which accesses (via TADODataset) the
database on the same CDROM. An application which you write to query
some table in a simple datbase on your hard drive or even a CDROM with
"fixed" designation, may not run properly from the CDROM with the database.
I need some code snippet or instructions on how to set the data base
and/or application.
Thanks
|
|
| Back to top |
|
 |
Roberto Nicchi Guest
|
Posted: Fri Oct 10, 2003 6:36 pm Post subject: Re: Which DB to Use for CDROM |
|
|
If you want an open source db you could try Flashfiler available in
sourceforge.com
Roberto
"hclarius" <hfclarius (AT) nospamcomcast (DOT) net> ha scritto nel messaggio
news:3f8529ec (AT) newsgroups (DOT) borland.com...
| Quote: | Using D7 Pro, I need to develop database application (read only) which
will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I
can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
|
|
| Back to top |
|
 |
Michael Baytalsky Guest
|
Posted: Fri Oct 10, 2003 7:08 pm Post subject: Re: Which DB to Use for CDROM |
|
|
DBISAM by http://www.elevatesoft.com would be my choice.
Michael
"hclarius" <hfclarius (AT) nospamcomcast (DOT) net> wrote
| Quote: | Using D7 Pro, I need to develop database application (read only) which
will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I
can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
|
|
| Back to top |
|
 |
hclarius Guest
|
Posted: Sun Oct 12, 2003 2:40 am Post subject: Re: Which DB to Use for CDROM |
|
|
hclarius wrote:
| Quote: | Using D7 Pro, I need to develop database application (read only) which will
reside on a CD along with the database file.
Which database should I use?
Any tricks I need to know to access the database from the CD?
I have been trying to use Access with an ADODataSet, but application bombs
when I try to go through the individual records from the ADODataset. I can
display a table with some basic where clause in a DBGRID.
Any suggestions?
|
Actually I am having "guarded" success with Access. The problem had to
do with me not setting the proper cursor type and cursor location.
Thanks
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|