Did you use flatfiles in your projects? At what situation you used it? How can you upload flatfiles?

Showing Answers 1 - 3 of 3 Answers

venki

  • Dec 13th, 2006
 

We can not use flatfile directely in your project but you can use it by creating it as a an object just like create object("scripting.file system object")

  Was this answer useful?  Yes

muthukumaar.cs

  • Dec 17th, 2006
 

flat files are simply like a notepad  fiel with an extension filename.db   these files are created[ application specific ]  by an application when an backend like oracle , sqlserver are not used .the data stored in the files are sequential in order and data retrieval is sequencial order. time consuming if ample of data is stored.mostly  small organisation's application use this where they cant afford  sql ,sqlserver etc

  Was this answer useful?  Yes

honey

  • Jan 4th, 2007
 

Reading flat files

Set fso=createobject("scripting.filesysytemobject")

set f=fso.open textfile ("give the path of the nate pad in quotes",1), \ 1-for reading, 2- for writing, 8- append) 

 while f.atendofline<>true

a=f.readline

wend

f.close

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions