NotORM

NotORM是一个PHP库,用于简单处理数据库中的数据。(NotORM is a PHP library for simple working with data in the database. )

  • Owner: vrana/notorm
  • Platform:
  • License::
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

NotORM是一个PHP库,用于简单处理数据库中的数据。 最有趣的特性是与表关系的非常简单的工作。 整体性能也非常重要,而NotorM实际上可以比原生驱动程序运行得更快。 数据库的NotORM就像SimpleXML for XML文档。

要求:PHP 5.1+与PDO支持的任何数据库 - 使用MySQL,SQLite,PostgreSQL,MS SQL,Oracle(Dibi支持已过时)进行测试
免费用于商业和非商业用途(Apache许可证或GPL)

用法示例:

<?phpinclude "NotORM.php";$connection = new PDO("mysql:dbname=software");$software = new NotORM($connection);foreach ($software->application()->order("title") as $application) { //get all applications ordered by title    echo "$application[title]\n"; //print application title    echo $application->author["name"] . "\n"; //print name of the application author    foreach ($application->application_tag() as $application_tag) { //get all tags of $application        echo $application_tag->tag["name"] . "\n"; //print the tag name    }} ?>

Overview

Name With Ownervrana/notorm
Primary LanguagePHP
Program languagePHP (Language Count: 1)
Platform
License:
Release Count0
Created At2010-04-28 14:37:57
Pushed At2019-02-28 09:52:17
Last Commit At2014-10-30 09:35:32
Stargazers Count860
Watchers Count67
Fork Count161
Commits Count254
Has Issues Enabled
Issues Count97
Issue Open Count31
Pull Requests Count0
Pull Requests Open Count10
Pull Requests Close Count34
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

NotORM - http://www.notorm.com/

NotORM is a PHP library for simple working with data in the database. The most interesting feature is a very easy work with table relationships. The overall performance is also very important and NotORM can actually run faster than a native driver.

Requirements:
PHP 5.1+
any database supported by PDO (tested with MySQL, SQLite, PostgreSQL, MS SQL, Oracle)

Usage:

To the top