[q-lang-cvs] q-csv README,1.7,1.8
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2008-01-14 04:35:36
|
Update of /cvsroot/q-lang/q-csv In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1887 Modified Files: README Log Message: typo fixes Index: README =================================================================== RCS file: /cvsroot/q-lang/q-csv/README,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** README 13 Jan 2008 17:27:14 -0000 1.7 --- README 14 Jan 2008 04:35:30 -0000 1.8 *************** *** 28,36 **** - freadcsv_data converts non-quoted numeric fields to integer or double values ! automatically. Invalidly formated CSV strings force the invocation of a 'csv_error MSG' rule. fwritecsv_data writes integer or double values to non-quoted fields. The handling of quoted or non-quoted fields is automatic. Fields with types ! other than floats, integers, or strings force the invocation of a 'csv_error MSG' rule. --- 28,36 ---- - freadcsv_data converts non-quoted numeric fields to integer or double values ! automatically. Invalidly formatted CSV strings force the invocation of a 'csv_error MSG' rule. fwritecsv_data writes integer or double values to non-quoted fields. The handling of quoted or non-quoted fields is automatic. Fields with types ! other than floats, integers or strings force the invocation of a 'csv_error MSG' rule. *************** *** 42,49 **** with embedded end of lines. It does not check for a valid record. The two other primary interface functions, csvstr_to_tuple and tuple_to_csvstr ! convert CSV formated strings to tuples and vice versa. The routines described above read/write one record at a time. Additional ! functions (freadfilecsv_data and fwritefilecsv_data) are provided to convert between entire CSV files and lists of tuples. Note that these require that the entire data fits into RAM and will thus be inefficient for huge datasets. --- 42,49 ---- with embedded end of lines. It does not check for a valid record. The two other primary interface functions, csvstr_to_tuple and tuple_to_csvstr ! convert CSV formatted strings to tuples and vice versa. The routines described above read/write one record at a time. Additional ! functions (freadcsvfile_data and fwritecsvfile_data) are provided to convert between entire CSV files and lists of tuples. Note that these require that the entire data fits into RAM and will thus be inefficient for huge datasets. |