├── NotORM.php ├── NotORM ├── Cache.php ├── Literal.php ├── MultiResult.php ├── Result.php ├── Row.php └── Structure.php ├── composer.json ├── readme.txt ├── tests ├── 1-basic.phpt ├── 10-update.phpt ├── 11-pairs.phpt ├── 12-via.phpt ├── 13-join.phpt ├── 14-where.phpt ├── 15-multiple.phpt ├── 16-offset.phpt ├── 17-transaction.phpt ├── 18-union.phpt ├── 19-array-offset.phpt ├── 2-detail.phpt ├── 20-extended.phpt ├── 21-simple-union.phpt ├── 22-insert-update.phpt ├── 23-prefix.phpt ├── 24-lock.phpt ├── 25-backjoin.phpt ├── 26-in.phpt ├── 27-in-multi.phpt ├── 28-literal.phpt ├── 29-row-set.phpt ├── 3-search-order.phpt ├── 30-rowclass.phpt ├── 31-datetime.phpt ├── 32-in-null.phpt ├── 33-structure.phpt ├── 34-update-primary.phpt ├── 35-multiresult-loop.phpt ├── 36-and.phpt ├── 37-or.phpt ├── 38-parens.phpt ├── 4-findone.phpt ├── 5-tostring.phpt ├── 6-aggregation.phpt ├── 7-subquery.phpt ├── 8-discovery.phpt ├── 9-cache.phpt ├── connect.inc.php ├── run-tests.php └── software.sql └── todo.txt /NotORM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM.php -------------------------------------------------------------------------------- /NotORM/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/Cache.php -------------------------------------------------------------------------------- /NotORM/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/Literal.php -------------------------------------------------------------------------------- /NotORM/MultiResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/MultiResult.php -------------------------------------------------------------------------------- /NotORM/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/Result.php -------------------------------------------------------------------------------- /NotORM/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/Row.php -------------------------------------------------------------------------------- /NotORM/Structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/NotORM/Structure.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/composer.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/1-basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/1-basic.phpt -------------------------------------------------------------------------------- /tests/10-update.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/10-update.phpt -------------------------------------------------------------------------------- /tests/11-pairs.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/11-pairs.phpt -------------------------------------------------------------------------------- /tests/12-via.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/12-via.phpt -------------------------------------------------------------------------------- /tests/13-join.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/13-join.phpt -------------------------------------------------------------------------------- /tests/14-where.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/14-where.phpt -------------------------------------------------------------------------------- /tests/15-multiple.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/15-multiple.phpt -------------------------------------------------------------------------------- /tests/16-offset.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/16-offset.phpt -------------------------------------------------------------------------------- /tests/17-transaction.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/17-transaction.phpt -------------------------------------------------------------------------------- /tests/18-union.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/18-union.phpt -------------------------------------------------------------------------------- /tests/19-array-offset.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/19-array-offset.phpt -------------------------------------------------------------------------------- /tests/2-detail.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/2-detail.phpt -------------------------------------------------------------------------------- /tests/20-extended.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/20-extended.phpt -------------------------------------------------------------------------------- /tests/21-simple-union.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/21-simple-union.phpt -------------------------------------------------------------------------------- /tests/22-insert-update.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/22-insert-update.phpt -------------------------------------------------------------------------------- /tests/23-prefix.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/23-prefix.phpt -------------------------------------------------------------------------------- /tests/24-lock.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/24-lock.phpt -------------------------------------------------------------------------------- /tests/25-backjoin.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/25-backjoin.phpt -------------------------------------------------------------------------------- /tests/26-in.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/26-in.phpt -------------------------------------------------------------------------------- /tests/27-in-multi.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/27-in-multi.phpt -------------------------------------------------------------------------------- /tests/28-literal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/28-literal.phpt -------------------------------------------------------------------------------- /tests/29-row-set.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/29-row-set.phpt -------------------------------------------------------------------------------- /tests/3-search-order.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/3-search-order.phpt -------------------------------------------------------------------------------- /tests/30-rowclass.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/30-rowclass.phpt -------------------------------------------------------------------------------- /tests/31-datetime.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/31-datetime.phpt -------------------------------------------------------------------------------- /tests/32-in-null.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/32-in-null.phpt -------------------------------------------------------------------------------- /tests/33-structure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/33-structure.phpt -------------------------------------------------------------------------------- /tests/34-update-primary.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/34-update-primary.phpt -------------------------------------------------------------------------------- /tests/35-multiresult-loop.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/35-multiresult-loop.phpt -------------------------------------------------------------------------------- /tests/36-and.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/36-and.phpt -------------------------------------------------------------------------------- /tests/37-or.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/37-or.phpt -------------------------------------------------------------------------------- /tests/38-parens.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/38-parens.phpt -------------------------------------------------------------------------------- /tests/4-findone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/4-findone.phpt -------------------------------------------------------------------------------- /tests/5-tostring.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/5-tostring.phpt -------------------------------------------------------------------------------- /tests/6-aggregation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/6-aggregation.phpt -------------------------------------------------------------------------------- /tests/7-subquery.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/7-subquery.phpt -------------------------------------------------------------------------------- /tests/8-discovery.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/8-discovery.phpt -------------------------------------------------------------------------------- /tests/9-cache.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/9-cache.phpt -------------------------------------------------------------------------------- /tests/connect.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/connect.inc.php -------------------------------------------------------------------------------- /tests/run-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/run-tests.php -------------------------------------------------------------------------------- /tests/software.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/tests/software.sql -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrana/notorm/HEAD/todo.txt --------------------------------------------------------------------------------