bumped version to 1.2

This commit is contained in:
2010-03-04 04:01:19 +02:00
parent ce8c0b4333
commit 5671f6e051
2 changed files with 30 additions and 2 deletions

View File

@@ -1,3 +1,31 @@
LiteMySQL 1.2
-----------------------------------
Date: 4-Mar-2010
- Fixed two SQL-inject issues.
- Fixed an issue with using the
primary-key option.
- Fixed limit and offset options so
limit is usable without offset.
- find_all() returns an empty array if
no records match conditions.
- Conditions can now look for multiple
matching values.
For Example:
find_all(array('id' => array(1,3)))
Will create a WHERE statement that
looks like:
WHERE `id` IN(1,3)
-----------------------------------
LiteMySQL 1.1.2
-----------------------------------
Date: 25-May-2009

View File

@@ -2,8 +2,8 @@
/*
Class: LiteMySQL v1.1.2
http://code.google.com/p/litemysql/
LiteMySQL v1.2
http://github.com/jimeh/litemysql
Very light-weight and simple ORM-like MySQL library for PHP. Kind of like
ActiveRecord's little brother.