- Notifications
You must be signed in to change notification settings - Fork0
Lightweight and easy to use PHP SQLITE3 ORM
License
NotificationsYou must be signed in to change notification settings
maertien/LiteORM
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Lightweight, really simple and easy to use PHP ORM for SQLite3
GNU GPL version 2
Martin Kumst -http://kumst.net
<?php// Load LiteORM classes as simple asrequire_once"../src/LiteORM.php";// Specify database filenamedefine("LITEORM_DB_FILE","./test.sqlite");// Create database structure as simple asclass Manextends LiteORMDataObject {}$man =newMan(array("age" =>20,"name" =>"Martin"));$man->createTable();// Insert object$man->save();// Get some property valueecho$man->get("age");// Modify and save object$man->set("age",22);$man->save();// For more examples please take a look at tests/test_sqlite.php file
About
Lightweight and easy to use PHP SQLITE3 ORM
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published