Re: Importing CSV into a WO application

2006-10-23 Thread Dev WO
Hello Chuck, I'll have a look at it too:) Hopefully I'll be choosing which direction to go by tomorrow:) Thanks, Xavier Hi Xavier, On Oct 23, 2006, at 3:30 AM, Dev WO wrote: Hi, searching the list I have found many post about excel export and things like that. But I'm actually looking fo

Re: Importing CSV into a WO application

2006-10-23 Thread Dev WO
Hello Timo, thanks to point out about the licensing part. Just a quick question, if it's provided as a service and not as a software does it change anything? Xavier Am 23.10.2006 um 13:42 schrieb Kieran Kelleher: You can use utilities such as this: http://ostermiller.org/utils/CSV.html

Re: Importing CSV into a WO application

2006-10-23 Thread Chuck Hill
Hi Xavier, On Oct 23, 2006, at 3:30 AM, Dev WO wrote: Hi, searching the list I have found many post about excel export and things like that. But I'm actually looking for a way to import CSV into a WO application. Is there anything already done to handle importing of CSV? Like providing a

Re: Importing CSV into a WO application

2006-10-23 Thread Timo Hoepfner
Am 23.10.2006 um 13:42 schrieb Kieran Kelleher: You can use utilities such as this: http://ostermiller.org/utils/CSV.html Looks nice, but is licensed under GPL, so it cannot be used in commercial projects if you don't open the source of the whole project... Also see http://ostermiller.org

Re: Importing CSV into a WO application

2006-10-23 Thread Robert Walker
Also checkout out the Apache project for an open source solution to reading and writing CSV.http://jakarta.apache.org/commons/sandbox/csv/On Oct 23, 2006, at 12:27 PM, Simon McLean wrote:hi - we extensively use CSV Manager from Ricebridge:http://www.ricebridge.com/products/csvman/reference.htmit's

Re: Importing CSV into a WO application

2006-10-23 Thread Simon McLean
hi - we extensively use CSV Manager from Ricebridge: http://www.ricebridge.com/products/csvman/reference.htm it's not too expensive and rock solid. if you write your own it's worth reading the sale pitch on their website about all the pitfalls of importing CSV files for some guidance !! s

Re: Importing CSV into a WO application

2006-10-23 Thread Dev WO
I found the link to ostermiller's site but it was down when I checked;) Thanks Kieran, I'll have a look. Xavier You can use utilities such as this: http://ostermiller.org/utils/CSV.html and wrap the parser with your own utility classes to do what you want. /** @return NSArray of

Re: Importing CSV into a WO application

2006-10-23 Thread Kieran Kelleher
You can use utilities such as this: http://ostermiller.org/utils/CSV.html and wrap the parser with your own utility classes to do what you want. /** @return NSArray of strings when passed a line of CSV data */ public static NSArray arrayFromCsvRecord( String csvRecord ) {

Importing CSV into a WO application

2006-10-23 Thread Dev WO
Hi, searching the list I have found many post about excel export and things like that. But I'm actually looking for a way to import CSV into a WO application. Is there anything already done to handle importing of CSV? Like providing a NSArray of column name, an editing context and an eo t