idiorm という使いやすい軽量 ORM ライブラリを見つけました。便利だと思ったのですが、自分が書いたものにはセキュリティ上の問題があるのではないかと心配だったので、これを使用したいと思いました。
彼のドキュメントは次のとおりです: http://idiorm.readthedocs.org/en/latest/index.html
Github アドレス: https://github.com/j4mie/idiorm
Index.php コードは次のとおりです:
<?phprequire_once "ORM.php";ORM::configure('mysql:host=localhost;dbname=mydemotest');ORM::configure('username', 'root');ORM::configure('password', '123456');//初始化ORM::configure('return_result_sets', true);//$account = ORM::for_table('account')->create();$account->id = 11;$account->account = 1236;$account->save();
<?phprequire_once 'ORM.php';ORM::configure('mysql:host=w.rdc.sae.sina.com.cn:3307;dbname=SAE_MYSQL_DB');ORM::configure('username', 'SAE_MYSQL_USER');ORM::configure('password', 'SAE_MYSQL_PASS');$account = ORM::for_table('account')->create();$account->id = 11;$account->account = 1236;$account->save();?>
SAE_MYSQL_XXXX は定数です!
ORM::configure('mysql:host=w.rdc.sae.sina.com.cn:3307;dbname=' . SAE_MYSQL_DB);ORM::configure('username', SAE_MYSQL_USER);ORM::configure('password', SAE_MYSQL_PASS);