CSV stands for Comma Seperated Values. This is a file using for storing data in text format with seperation of comma(,) between two fields. If there is any comma in the field it will be represented by a pair of double-quote characters.
Like:
RollNo-Name-Course-Address
125,Khoja Mahmadhusen,BCA,”Junagam,Pipal Faliya”
Fields with embedded double-quote characters will be delimited by double-quote characters, and the embedded double-quote characters will be represented by a pair of double-quote characters.
Like:
125,Khoja Mahmadhusen,BCA,”Junagam “”123″”,Pipal Faliya”
The first record in a csv file can contain column names in each of the fields.
Like:
RollNo,Name,Course,Address
125,Khoja Mahmadhusen,BCA,”Junagam,Pipal Faliya”
Wednesday, August 20, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment