Search found 2 matches

by PatFr
Thu May 24, 2012 3:03 pm
Forum: discbugs
Topic: About flat dataBase
Replies: 1
Views: 4752

About flat dataBase

Well, I find it myself:

dim CR as string
CR= chr$(13)+chr$(10) ` ChariotReturn and LineFeed

=======
record car
CR as string * 3

...
`===============================
`put some data
car.CR= CR
...


It works
Perhaps this code help someone
PatFr



by PatFr
Thu May 24, 2012 9:34 am
Forum: discbugs
Topic: About flat dataBase
Replies: 1
Views: 4752

About flat dataBase

Hi everybodyI try pour make a little db dy using this example :`==========set it up============record car  wheel as integer  color as string * 10end recorddim dbase as randomfile`open file this before assigning the recorddbase.open("database.txt")`assign recorddbase.assign(car)`=...