mirror of
https://github.com/jimeh/litemysql.git
synced 2026-02-19 04:46:39 +00:00
bumped version to 1.2
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user