Hi Vladimir, 0.93 was released in April so it predates Grisha's bug report. Have you tried the latest development build? Sascha has made a number of improvements to the MongoDB binding lately.
Slava On Thu, Jul 29, 2010 at 1:15 AM, Vladimir Darmanian <[email protected]> wrote: > Hey guys any progress on this one? > I'm running factor 0.93 32 bit on windows with the exact same problem when > using the high level tuple access. > > > On Mon, May 24, 2010 at 7:10 PM, Grisha Freilikhman <[email protected]> > wrote: >> >> Thanks for help, i'll try this. >> >> First of all in the MongoDb factor integration page at the low-level >> section: >> instead : >> USING: mongodb.driver ; >> "db" "127.0.0.1" 27017 <mdb> >> [ "mycollection" [ H{ { "name" "Alfred" } { "age" 57 } } save ] >> [ ageIdx [ "age" asc ] key-spec <index-spec> ensure-index ] >> [ H{ { "age" H{ { "$gt" 50 } } } } <query> find-one ] tri ] with-db >> >> it should be(change is highlighted): >> USING: mongodb.driver ; >> "db" "127.0.0.1" 27017 <mdb> >> [ "mycollection" [ H{ { "name" "Alfred" } { "age" 57 } } save ] >> [ "ageIdx" [ "age" asc ] key-spec <index-spec> ensure-index ] >> [ H{ { "age" H{ { "$gt" 50 } } } } <query> find-one ] tri ] with-db >> >> The high level integration example just not working. It connects to the >> server as i see in the server log but >> it not saves the tuple and end with the next error: >> Generic word element-data-read does not define a method for the fixnum >> class. >> Dispatching on object: 18 >> I have win 7 64 bit. I thought that maybe the problem is with the server >> being 64bit so i changed to 32bit, but the result is he same. >> Thanks. >> >> >> On Mon, May 24, 2010 at 4:50 AM, Slava Pestov <[email protected]> >> wrote: >>> >>> On Sun, May 23, 2010 at 8:27 PM, Grisha Freilikhman <[email protected]> >>> wrote: >>> > Hi, >>> > I have two questions: >>> > 1) Where should i post documentation mistakes? >>> >>> You can tell us about them on the mailing list. >>> >>> > 2) I try to do things with sqlite, it just not working. Where should i >>> > put >>> > the sqlite3.dll file. >>> >>> Place it anywhere in your PATH, or in the same directory as >>> factor.exe. If you are on 32-bit Windows, make sure you download the >>> DLL from http://factorcode.org/dlls/; if you are on 64-bit Windows, >>> get the DLL from http://factorcode.org/dlls/64/. >>> >>> Slava >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> Factor-talk mailing list >>> [email protected] >>> https://lists.sourceforge.net/lists/listinfo/factor-talk >> >> >> >> ------------------------------------------------------------------------------ >> >> >> _______________________________________________ >> Factor-talk mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/factor-talk >> > > > ------------------------------------------------------------------------------ > The Palm PDK Hot Apps Program offers developers who use the > Plug-In Development Kit to bring their C/C++ apps to Palm for a share > of $1 Million in cash or HP Products. Visit us here for more details: > http://p.sf.net/sfu/dev2dev-palm > _______________________________________________ > Factor-talk mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/factor-talk > > ------------------------------------------------------------------------------ The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring their C/C++ apps to Palm for a share of $1 Million in cash or HP Products. Visit us here for more details: http://p.sf.net/sfu/dev2dev-palm _______________________________________________ Factor-talk mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/factor-talk
