Re: [Pharo-users] NeoCSV and special handling for some columns

2015-10-03 Thread stepharo
Do you commit the new section? Because I'm full. Le 3/10/15 09:39, Sven Van Caekenberghe a écrit : Yes, there are a couple of newer features that were added after the documentation was written. Keeping documentation up to date is also a PITA. On 03 Oct 2015, at 08:54, stepharo wrote: sven d

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-10-03 Thread Sven Van Caekenberghe
Yes, there are a couple of newer features that were added after the documentation was written. Keeping documentation up to date is also a PITA. > On 03 Oct 2015, at 08:54, stepharo wrote: > > sven do you think that we should add this to the chapter? > > > Le 28/9/15 16:42, Sven Van Caekenberg

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-10-02 Thread stepharo
sven do you think that we should add this to the chapter? Le 28/9/15 16:42, Sven Van Caekenberghe a écrit : On 28 Sep 2015, at 15:04, Mariano Martinez Peck wrote: Imagine something like this: neoCSVReader := (NeoCSVReader on: stream). neoCSVReader separator: $,;

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Nicolai Hess
2015-09-28 17:33 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 17:21, Nicolai Hess wrote: > > > > Thanks Mariano, Sven > > > > > > > > 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > wrote: > > > > > > Imagine something

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Sven Van Caekenberghe
> On 28 Sep 2015, at 17:21, Nicolai Hess wrote: > > Thanks Mariano, Sven > > > > 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > > wrote: > > > > Imagine something like this: > > > > neoCSVReader := (NeoCSVReader on: stream). > >

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Nicolai Hess
Thanks Mariano, Sven 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > wrote: > > > > Imagine something like this: > > > > neoCSVReader := (NeoCSVReader on: stream). > > neoCSVReader > > separator: $,; > >

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Sven Van Caekenberghe
> On 28 Sep 2015, at 15:04, Mariano Martinez Peck wrote: > > Imagine something like this: > > neoCSVReader := (NeoCSVReader on: stream). > neoCSVReader > separator: $,; > recordClass: PriceRecord; > addIgnoredField; "" > addField:

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Mariano Martinez Peck
Imagine something like this: neoCSVReader := (NeoCSVReader on: stream). neoCSVReader separator: $,; recordClass: PriceRecord; addIgnoredField; "" addField: #securityUniqueId: ; "" addField: #date: converter: [ :string | Date readFrom: string readStream pattern: 'mmdd' ]; "" addFloatField: #op