Re: [Pharo-users] Databases for Pharo that do not use FFI

2013-08-12 Thread Pierce Ng
On Sat, Aug 10, 2013 at 11:44:06PM +1000, vin...@gmail.com wrote: > VoyageMongo looks interesting. PostgreSQL is supported too. Do either of > these work through FFI? On SqueakSource, PostgresV2, PostgresV3, MySQL and StdbCore (for MySQL) are pure Smalltalk implementations of the respective wire p

Re: [Pharo-users] Databases for Pharo that do not use FFI

2013-08-10 Thread Dale K. Henrichs
elease) so you can make only one concurrent non-blocking call. Dale - Original Message - | From: vin...@gmail.com | To: pharo-users@lists.pharo.org | Sent: Saturday, August 10, 2013 6:44:06 AM | Subject: [Pharo-users] Databases for Pharo that do not use FFI | | Hello | | I have been

Re: [Pharo-users] Databases for Pharo that do not use FFI

2013-08-10 Thread Mariano Martinez Peck
On Sat, Aug 10, 2013 at 12:46 PM, Stéphane Ducasse < stephane.duca...@inria.fr> wrote: > > > Hello > > > > I have been tinkering with Pharo long enough now to contemplate writing > a "serious" applications with it. An important consideration is databases. > > Esteban will start to work on the thre

Re: [Pharo-users] Databases for Pharo that do not use FFI

2013-08-10 Thread Stéphane Ducasse
> Hello > > I have been tinkering with Pharo long enough now to contemplate writing a > "serious" applications with it. An important consideration is databases. Esteban will start to work on the threaded vm with eliot for such typical case. > I have been looking at SQLite but realise since it

Re: [Pharo-users] Databases for Pharo that do not use FFI

2013-08-10 Thread Mariano Martinez Peck
On Sat, Aug 10, 2013 at 10:44 AM, wrote: > Hello > > I have been tinkering with Pharo long enough now to contemplate writing a > "serious" applications with it. An important consideration is databases. I > have been looking at SQLite but realise since it works through FFI it > probably blocks the

[Pharo-users] Databases for Pharo that do not use FFI

2013-08-10 Thread vinref
Hello I have been tinkering with Pharo long enough now to contemplate writing a "serious" applications with it. An important consideration is databases. I have been looking at SQLite but realise since it works through FFI it probably blocks the VM whilst processing a query. Is this correct? Vo