About 214,000 results
Open links in new tab
  1. What is PDO & why should I use it? - Stack Overflow

    Aug 8, 2011 · PDO provides a data-access abstraction layer, which means that, regardless of which database you're using, you use the same functions to issue queries and fetch data. PDO does not …

  2. mysqli or PDO - what are the pros and cons? - Stack Overflow

    Aug 17, 2008 · PDO is the standard, it's what most developers will expect to use. mysqli was essentially a bespoke solution to a particular problem, but it has all the problems of the other DBMS-specific …

  3. php - How to properly set up a PDO connection - Stack Overflow

    Inside my sqlQuery - class, which extends my connect_pdo - class, I have a public function called getAreaName which handles the request to my database. Pretty neat I think. Works like a charm So …

  4. PHP PDO vs normal mysql_connect - Stack Overflow

    Sep 10, 2009 · 47 Should I use php PDO or normal mysql_connect to execute database queries in PHP? Which one is faster? One of the big benefits of PDO is that the interface is consistent across …

  5. mysql - PHP PDO: charset, set names? - Stack Overflow

    While this answer is probably correct and useful, it is preferred if you include some explanation along with it to explain how it helps to solve the problem. This becomes especially useful in the future, if …

  6. How a PDO Thread Lift Works, How Long It Lasts, Risks & More - RealSelf

    Apr 20, 2023 · Learn how a PDO thread lift works, what to expect, if it hurts, how long recovery takes, how long it lasts, if it’s dangerous, and more.

  7. php - Real escape string and PDO - Stack Overflow

    I'm using PDO after migrating away from the mysql library. What do I use in place of the old real_escape_string function? I need to escape single quotes so they will go into my database and I think

  8. PHP 7 RC3: How to install missing MySQL PDO - Stack Overflow

    Sep 23, 2015 · First, check if your php.ini has the extension enabled "php_pdo_mysql" and "php_mysqli" and the path of "extension_dir" is correct. If you need one of above configuration, then, you must …

  9. mysql - PHP Fatal error: Class 'PDO' not found - Stack Overflow

    Aug 5, 2012 · extension=pdo.so extension=pdo_sqlite.so extension=pdo_mysql.so extension=sqlite.so If they are not present, simply add the lines above to the bottom of the php.ini file and save it.

  10. How do I create a PDO parameterized query with a LIKE statement?

    How do I create a PDO parameterized query with a LIKE statement? Asked 16 years, 10 months ago Modified 8 months ago Viewed 122k times