[Pharo-users] MultiByteFileStream problem

2014-11-16 Thread José Comesaña
There is an annoying error in MultiByteFileStream, reading back when you have a unicode character. It is also the cause of some FileOut errors. Your can reproduce it this way: testString := 'abcdé'. filename := 'test.txt'. filename asFileReference ensureDelete. filename asFileReference writeStream

Re: [Pharo-users] running out of memory while processing a 220MB csv file with NeoCSVReader - tips?

2014-11-16 Thread Igor Stasenko
Never ending memory consumption problem. Hopefully with 64-bit version of VM we'll have a way more space to waste and it could take more effort to put system on its knees. -- Best regards, Igor Stasenko.

Re: [Pharo-users] 'function unavailable' when calling OpenDBXDriver for MySQL

2014-11-16 Thread Igor Stasenko
On 16 November 2014 23:46, bsselfri...@gmail.com wrote: > I've used the instructions defined on the "http://dbxtalk.smallworks.eu/"; > website to setup the OpenDBXDriver for a MySQL database. When I try to > make > a connection to the database, I'm getting the "function unavailable". > > I have

[Pharo-users] 'function unavailable' when calling OpenDBXDriver for MySQL

2014-11-16 Thread bsselfri...@gmail.com
I've used the instructions defined on the "http://dbxtalk.smallworks.eu/"; website to setup the OpenDBXDriver for a MySQL database. When I try to make a connection to the database, I'm getting the "function unavailable". I have this working on a Ubuntu 14.04 32bit OS. I'm wondering if my prob

[Pharo-users] pharo consultants

2014-11-16 Thread Norbert Hartl
I just had a look at http://consultants.pharo.org/ (that is linked from pharo.org ) and it seems pretty outdated. The page footer tells Page last generated on 2013-10-12T21:46:35.576104+02:00 by Pharo3.0 of 18 March 2013 update 30262 and the

Re: [Pharo-users] running out of memory while processing a 220MB csv file with NeoCSVReader - tips?

2014-11-16 Thread Alain Rastoul
ok, bad guess, sorry. my previous suggestion about interning data in this kind of processing is more reliable, and could help you reduce memory footprint by at least a factor 3 or more (depends if you have lots of integers or floats, and works very well with string and dates) and should be ver

Re: [Pharo-users] running out of memory while processing a 220MB csv file with NeoCSVReader - tips?

2014-11-16 Thread Paul DeBruicker
Hi Alain, Thanks for the link to the discussion. I attempted your suggestion for changing the command line parameters and it had no effect. Adding the colon prevented the image from starting, as did using a single hyphen. Paul Alain Rastoul-2 wrote > Ah, this reminded me an old thread abo