[Rt-commit] r4345 - in Jifty-DBI/trunk: . lib/Jifty
jesse at bestpractical.com
jesse at bestpractical.com
Fri Dec 23 15:48:57 EST 2005
Author: jesse
Date: Fri Dec 23 15:48:56 2005
New Revision: 4345
Modified:
Jifty-DBI/trunk/ (props changed)
Jifty-DBI/trunk/Changes
Jifty-DBI/trunk/META.yml
Jifty-DBI/trunk/lib/Jifty/DBI.pm
Log:
r21029 at truegrounds: jesse | 2005-12-23 15:47:24 -0500
* This be 0.06
Modified: Jifty-DBI/trunk/Changes
==============================================================================
--- Jifty-DBI/trunk/Changes (original)
+++ Jifty-DBI/trunk/Changes Fri Dec 23 15:48:56 2005
@@ -1,5 +1,7 @@
Revision history for Perl extension Jifty::DBI.
+0.06 Fri Dec 23 15:44:17 EST 2005
+
* Added more tests for mysql and Pg now that DBSchema supports them. Tests want more love
0.05_03
Modified: Jifty-DBI/trunk/META.yml
==============================================================================
--- Jifty-DBI/trunk/META.yml (original)
+++ Jifty-DBI/trunk/META.yml Fri Dec 23 15:48:56 2005
@@ -1,5 +1,5 @@
name: Jifty-DBI
-version: 0.05_02
+version: 0.06
license: perl
distribution_type: module
build_requires:
Modified: Jifty-DBI/trunk/lib/Jifty/DBI.pm
==============================================================================
--- Jifty-DBI/trunk/lib/Jifty/DBI.pm (original)
+++ Jifty-DBI/trunk/lib/Jifty/DBI.pm Fri Dec 23 15:48:56 2005
@@ -3,7 +3,7 @@
use strict;
-our $VERSION = '0.05_02';
+our $VERSION = '0.06';
=head1 NAME
@@ -17,7 +17,7 @@
This module provides an object-oriented mechanism for retrieving and
updating data in a DBI-accesible database.
-This module is the direct descendent of DBIx::SearchBuilder. If you're familiar
+This module is the direct descendent of L<DBIx::SearchBuilder>. If you're familiar
with SearchBuilder, Jifty::DBI should be quite familiar to you.
=head2 What is it trying to do.
@@ -25,7 +25,7 @@
Jifty::DBI::Record abstracts the agony of writing the common and generally
simple SQL statements needed to serialize and De-serialize an object to the
database. In a traditional system, you would define various methods on
-your object 'create', 'find', 'modify', and 'delete' being the most common.
+your object 'create', 'readu', 'update', and 'delete' being the most common.
In each method you would have a SQL statement like:
select * from table where value='blah';
More information about the Rt-commit
mailing list