You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/01/20 17:05:44 UTC

[Couchdb Wiki] Update of "Getting_started_with_Rebol" by IngoHohmann

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "Getting_started_with_Rebol" page has been changed by IngoHohmann.
The comment on this change is: Some rebol info and links.
http://wiki.apache.org/couchdb/Getting_started_with_Rebol

--------------------------------------------------

New page:
= Using plain Rebol3 =

This is how you can use CouchDB from plain Rebol3 (which is currently in public Alpha).

And here you can get Rebol3 [[http://www.rebol.com/r3/downloads.html|Rebol3 Alpha download]]

== How to read data from CouchDB using Rebol ==

{{{
read http://localhost:5984/db2/id
}}}

== How to write data to CouchDB using Rebol ==

{{{
write http://localhost:5984/db2/id json-data
}}}

== How to create a new CouchDB Database using Rebol ==

{{{
write http://localhost:5984/db2 [PUT [] ""]
}}}

= A Rebol module =

And here you can get a Rebol3 module, to make it even easier. especially working with json data.

[[http://www.rebol.org/view-script.r?script=couchdb3.r|couchdb3.r on rebol.org]]