From couchdb-commits-return-950-apmail-incubator-couchdb-commits-archive=incubator.apache.org@incubator.apache.org Thu Aug 21 20:50:59 2008 Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 43617 invoked from network); 21 Aug 2008 20:50:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Aug 2008 20:50:59 -0000 Received: (qmail 44342 invoked by uid 500); 21 Aug 2008 20:50:58 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 44323 invoked by uid 500); 21 Aug 2008 20:50:58 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 44314 invoked by uid 99); 21 Aug 2008 20:50:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2008 13:50:58 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2008 20:49:59 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id B50D7118D6 for ; Thu, 21 Aug 2008 20:50:28 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: couchdb-commits@incubator.apache.org Date: Thu, 21 Aug 2008 20:50:28 -0000 Message-ID: <20080821205028.18145.34814@eos.apache.org> Subject: [Couchdb Wiki] Update of "GettingStartedWithSmalltalk" by James Robertson X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification. The following page has been changed by James Robertson: http://wiki.apache.org/couchdb/GettingStartedWithSmalltalk New page: There is a nascent interface being built for [http://www.cincomsmalltalk.com Cincom Smalltalk]. To try that out, you'll need to: * [http://www.cincomsmalltalk.com/scripts/CommunityDownloadPage.ssp Download Cincom Smalltalk] * Get an Account in the [http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Store+Repository Cincom Smalltalk Public Repository] * Load the "CouchDB" package from the repository Once it's loaded, you can try things like this: {{{ "database API" Interface new createDB: 'mydb'. Interface new getDatabases. Interface new getDatabaseInformation: 'mydb'. Interface new compact: 'mydb'. Interface new deleteDB: 'myDB'. "Document APIs" settings := Settings new. Interface new saveNamedObject: settings id: 'mydbSettings' to: 'mydb'. Interface new getObject: 'mydbSettings' from: 'mydb' Interface new allObjectsFrom: 'mydb'. Interface new deleteDocument: 'docIdHere' revision: 'RevisionIdHere' from: 'mydb' }}} The POST API for storing documents is also supported, as is the delete API.