CouchRest provides a simple interface on top of CouchDB's RESTful
HTTP API, as well as including some utility scripts for managing
views and attachments.
addColumn; which broke py stuff
noticed with fgs@ while working on the py stuff
much thanks to bernd@; for doing a bulk build with it
ok fgs@, bernd@, simon@
DataObject performs 2 tasks:
1. Builds SQL statements based on the objects vars and the builder
methods.
2. acts as a datastore for a table row.
The core class is designed to be extended for each of your tables so
that you put the data logic inside the data classes. included is a
Generator to make your configuration files and your base classes.
CouchDB is a distributed, document-oriented, Non-Relational DataBase
Management Server (NRDBMS).
It is accessible via a RESTful JSON API, and provides incremental
replication with bi-directional conflict detection and management.
Data is stored with a schema-free, flat address space, and may be
queried via a table-oriented reporting engine that uses Javascript
as a query language.
Joint work of maintainer Benoit Chesneau, fgsch@ and myself.
CGI::Application::Plugin::DBH adds easy access to a DBI database handle
to your CGI::Application modules. Lazy loading is used to prevent a
database connection from being made if the dbh method is not called
during the request. In other words, the database connection is not
created until it is actually needed.
from Mikolaj Kucharski
Sequel is an ORM framework for Ruby. Sequel provides thread safety,
connection pooling, and a concise DSL for constructing queries and
table schemas.
Sequel makes it easy to deal with multiple records without having
to break your teeth on SQL.
Maintained by upstream author Jeremy Evans. Thank you!