|
Project Information
Featured
Downloads
Links
|
April 17th 2009Given the recent update and how broken this project still is, Im going to move into a different direction. I'll be dropping the filter calls and just allow ordering, indices, and caching results. SQL is not in the mind of a programmer, simpledb aims to simplify the process of creating a small database application. So if your making a small application with about 0-10,000 entries per table, consider simpledb. ===Release Log=== Past Releases
include 'lib.simpledb.php';
class User extends SimpleDb
{
protected $__indexes = array('username', 'password');
public $username;
public $password;
public $signup;
public $lastlogin;
}
$user = new User('data');
$user->reindex(); |