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    }} ?>

Main metrics

Overview
Name With Ownervrana/notorm
Primary LanguagePHP
Program languagePHP (Language Count: 1)
Platform
License:
所有者活动
Created At2010-04-28 14:37:57
Pushed At2024-08-05 18:55:25
Last Commit At2014-10-30 09:35:32
Release Count0
用户参与
Stargazers Count857
Watchers Count63
Fork Count157
Commits Count254
Has Issues Enabled
Issues Count98
Issue Open Count31
Pull Requests Count0
Pull Requests Open Count9
Pull Requests Close Count35
项目设置
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: