pedia-learning

ورود

گذرواژه‌تان را فراموش کرده‌اید؟

ثبت نام

ثبت نام
انجمن عمومی گسترش فناوری آگو

اگر اولین بار از انجمن بازدید می کنید برای دسترسی کامل به انجمن عضو شوید بعد عضویت قادر به ارسال مطلب و شرکت در بحث خواهید داشت

ارسال پاسخ 
 
امتیاز موضوع:
  • 0 رأی - میانگین امتیازات: 0
  • 1
  • 2
  • 3
  • 4
  • 5
کلاس آماده کار با MySql
01-30-2014, 05:36 PM
ارسال: #1
کلاس آماده کار با MySql
سلام

در این پست یک کلاس آماده برای اتصال به دیتابیس رو قرار میدم که متونید توی پروژه هاتون ازش استفاده کنید.

کار باهاش به صورت زیره :

کد php:
// initiate the main DB class 
$db = new DB('mysql://user:pass@server/db'); 
$users $db->table('users'); $users->find(); // returns an array of all records from the users table 
$users->find_by_name('test'); // returns any rows where the name field == test 
$users->find_by_name_like('%test%'); // returns any rows where the name field LIKE '%test%' 
$users->create'name' => 'test''email' => 'test@test.com''enabled' => ); // creates a new row in the users table with the specified data
$id $users->lastId(); // return the last insert id 
$user $users->find($id); // find a user where id == $id 
$user->name 'not test'// set the name to not test 
$user->save(); // save the record 
$posts $db->table('posts'); $posts->find_by_date_after(date('Y-m-d H:i:s'strtotime('yesterday'))); // find all posts from the past 24 hours 
$posts->find_by_title_like('%php', array('order' => 'date DESC''limit' => 1)); 
$posts->find_by_user_id_and_title_like(array(12'%php%')); // find all posts by a certain user with title LIKE '%php%' 
نقل قول این ارسال در یک پاسخ
ارسال پاسخ 


پرش به انجمن:


کاربرانِ درحال بازدید از این موضوع: 1 مهمان


Persian Translation by MyBBIran.com - Ver: 4.1
Powered by MyBB, © 2002-2024 MyBB Group.
Theme designed by Marvel (Sidebar created by Yaldaram - Yaldaram.com)
Theme Translation by Mt Edition