Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

CatsWhoCode.com:
Getting started with CouchDB: a beginner's guide
Mar 05, 2010 @ 15:30:36

From CatsWhoCode.com there's a new tutorial looking at some of the basics of using CouchDB with PHP (the popular NoSQL database). They don't cover the install of CouchDB, so you'll need to have that up and running to follow along.

Have you ever dreamt about a powerful database that you can access easily, without using the SQL language? That what Apache CouchDB is all about. In this tutorial, I'm going to show you how to get started with this document-riented database and how you can use it with PHP.

They briefly cover what CouchDB (and NoSQL databases) are and how their records are stored - document based rather than row/column based like standard RDBMS. They use the PHPillow library to connect to their database and include the code to do an insert and pull that same data back out.

tagged: couchdb nosql beginner tutorial phpillow

Link:

Kore Nordmann's Blog:
PHPillow - a PHP CouchDB wrapper - Update
May 23, 2008 @ 16:18:34

Kore Nordmann has posted about a PHP wrapper they've created to lay on top of CouchDB - PHPillow.

The wrapper is called PHPillow, lays on top of the Couch and offers even more comfort laying anything into the database. :) It has complete API documentation, currently a test coverage of >95%, tutorials and practical examples included. Even I would call it alpha - as CouchDB is still alpha at the current state - you can expect it stay quite stable API wise, as I rely heavily on it in other projects and therefore won't break too much.

You can check out the latest version of this wrapper from its subversion site and get more information about CouchDB on its website and wiki.

tagged: couchdb wrapper class phpillow subversion svn checkout

Link:


Trending Topics: