> -----Original Message----- > From: Gordon [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 29, 2003 12:04 > To: [EMAIL PROTECTED] > Subject: [jelly] csv file to database > > > Would Jelly be a good tool to import a CSV file into a > database? If so what tag would I use to parse the CSV file? >
The SQL tags can simplify coding JDBC stuff. Jelly will be a greater help if you need to marshall data before importing into database. You will convert the CSV into XML first and then XSLT it as you see fit. The missing part is a CSV tag. Its implementation should be simple. Just wrapper around java.io.StreamTokenizer. See http://www-106.ibm.com/developerworks/xml/library/x-xmlexperts-csv/?dwzone=x ml for an example. Willie --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
