Arc Forumnew | comments | leaders | submitlogin
2 points by thaddeus 4352 days ago | link | parent

Here are some options for you:

Option 1. Use Fleetdb.

http://fleetdb.org/. Here's some rudimentary code to make this work with anarki: http://blackstag.com/fleetdb-client.arc

Option 2. Use any database that supports an HTTP interface.

You can use the anarki http library here: https://github.com/nex3/arc/blob/master/lib/http.arc along with something like Riak or Couchdb, etc.

Option 3. MySql over HTTP:

http://code.nytimes.com/projects/dbslayer

Option 4. Get the FFI working to access MySql and other more traditional database systems.

Some people had been working on the FFI interface, but so far I've yet to see anything that works. You can read my noob entry about this here: http://arclanguage.com/item?id=10839 and there were recent attempts by others as well.



1 point by jsgrahamus 4352 days ago | link

Some good ideas. Thanks, Thaddeus. Steve

-----