c# vs DelphiDB

  • Thread starter Thread starter Gianmaria I.
  • Start date Start date
G

Gianmaria I.

HEllo,
how can i open a db build wuth Delphi-db (???) , wich connectin string can i
use.. the file is a plain text file.. here is an example:

6        ÿ ÿb K
'ák'ák   ¾   `²C@ U ä]
 îîâkóïâkûïâkÿïâkðâkSTORICO.db
DATETIME LAT LON SAT     ANSIINTL

0405041428504107245999 01435227500
030405041428554107245499 01435227166
030405041429004107244999 01435227166
030405041429054107244666 01435227000
030405041429104107244333 01435227166
030405130012434074025500 01460451500 03



Gianmaria
 
Gianmaria said:
HEllo,
how can i open a db build wuth Delphi-db (???) , wich connectin
string can i use.. the file is a plain text file.. here is an example:

Gianmaria

That doesn't look to me like it is plain text. There appears to be a
non text (i.e. a binary) header in it.

Use a OLEDB connection and adapter to connect to the text file via the
Jet Oledb engine (should be plenty of examples out there in google
land) you may need to use a schema file to cut out the header (I am not
100% sure if you can do this, you might have to modify your text file
slightly)

Rgds Tim.
 
how can i open a db build wuth Delphi-db (???) , wich connectin string can i
use.. the file is a plain text file.. here is an example:

Delphi is a programming language - not a database. You can create and
use any kind of database with Delphi - anything from proprietary
formats, to object databases - you name it. That won't help....

What are the files like? Size, extension etc. ?

Marc
================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 
Back
Top