Download the PHP package lusito/notorm without Composer
On this page you can find all versions of the php package lusito/notorm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lusito/notorm
More information about lusito/notorm
Files in lusito/notorm
Package notorm
Short Description NotORM is a PHP library for simple working with data in the database.
License Zlib
Homepage https://github.com/lusito/notorm
Informations about the package notorm
NotORM - simple reading data from the database
Dual licensed (one or the other)
This is a fork of http://www.notorm.com/ (original author Jakub Vrana, copyright 2010)
NotORM is a PHP library for simple working with data in the database. The most interesting feature is, that it's very easy work with table relationships. The overall performance is also very important and NotORM can actually run faster than a native driver.
About this fork
- The original code has not been maintained in years.
- I needed a PSR-4 version of it
- I refactored the code a bit
- I ported the code to PHP 7.1
- I added a couple of extra features
- Usage has been left mainly untouched
Requirements
- PHP >= 7.1
- any database supported by PDO (tested with MySQL, SQLite, PostgreSQL, MS SQL, Oracle)
Installation
Install via composer:
composer require lusito/notorm:dev-master
Include the autoloader in your php script, unless you've done that already:
Usage
Setup is a bit different to the original NotORM. At first you need to create a Config object:
ConfigBuilder allows for various settings to be made. We'll come to that later.
After that, you can use it in the classic way or the new way I'm proposing.
The classic way:
The new way uses a static class:
This new approach helps you to avoid passing the database instance to every class where you need it (or even setting it globally).
Use DB::hasConfig()
to check if the DB has been set up.
Differences of the new approach
Action | Classic | New |
---|---|---|
Get table | $db->table_name(...$where) |
DB::table_name(...$where) |
Get table (by name) | $db->__call('table_name', ...$where) |
DB::getTable('table_name', ...$where) |
Get row by id | $db->table_name[$id] |
DB::getRow('table_name', $id) |
Set a config value (for example debug, debugTimer, freeze, rowClass or jsonAsArray) | $db->debug = true; |
DB::setConfigValue('debug', true); |
Begin a transaction | $db->transaction = 'BEGIN'; |
DB::beginTransaction() |
Commit a transaction | $db->transaction = 'COMMIT'; |
DB::commitTransaction() |
Rollback a transaction | $db->transaction = 'ROLLBACK'; |
DB::rollbackTransaction() |
License
The code is dual licensed (one or the other)