Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-16 Thread Pierce Ng
On Sat, Feb 14, 2015 at 09:30:12AM +0100, Stephan Eggermont wrote: > db := PqDatabase open: 'test.db'. Try using a FQPN. See this post about Pharo.app's default working directory being "/" on OSX: http://forum.world.st/NBSQLite3-on-OS-X-Pharo-3-tc4800276.html#a4801485 Pierce

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-14 Thread Sebastian Sastre
I would really like to have a Pharo client for unQLite I have places that would use it :) > On Feb 14, 2015, at 6:30 AM, Stephan Eggermont wrote: > > If I use the file from > https://github.com/mumez/PunQLite/tree/master/binary/mac > at least the library is found. The db file is not create

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-14 Thread Stephan Eggermont
If I use the file from https://github.com/mumez/PunQLite/tree/master/binary/mac at least the library is found. The db file is not created though resulting in a PqCursorError in keys db := PqDatabase open: 'test.db'. db at: 'Smalltalk' put: 'COOL'. db at: 'Pharo' put: 'HOT'. db at: 'Smalltalk'

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-14 Thread Stephan Eggermont
Fails on Mavericks 10.9.4 in 40486 with 402 vm, 20619 with vm from 18-9-2013 open: dbHandle named: dbName mode: mode ^ self nbCall: #( int unqlite_open( db_ptr* dbHandle, String dbName, uint mode) ) module: self libraryFileNameForPlatform I did not compile myself, just used the

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-13 Thread Pierce Ng
On Fri, Feb 13, 2015 at 06:07:07PM +0100, Stephan Eggermont wrote: > What should be done to make this work on OS X? > UnQLiteFFI>>libraryFileNameForPlatform > has a wrong name, but that doesn't help me. > Even after renaming the library cannot be found. Smalltalk side, version 12/23/2013 by Masash

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-13 Thread Stephan Eggermont
What should be done to make this work on OS X? UnQLiteFFI>>libraryFileNameForPlatform has a wrong name, but that doesn't help me. Even after renaming the library cannot be found. Stephan

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-02 Thread Pierce Ng
On Thu, Jan 29, 2015 at 06:09:41PM -, PBKResearch wrote: > This looks very interesting. I am looking at a project which needs simple > persistence, and I was considering MongoDB plus Voyage, which looked like > overkill. I shall definitely be trying PUnQLite. You might want to try SimplePersis

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-01-29 Thread PBKResearch
; Pharo Development List Cc: u...@blueplane.jp Subject: [Pharo-users] [ANN] PUnQLite NoSQL database project updated Hi, are you in need for really simple out of image persistency? If you like to use a small RDBMS solution with Pharo then there is the embeddable SQLite shared library and NBSQLite3 proj