| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2006-03-29 11:09 UTC] k1ngrs at ntlworld dot com
  [2006-03-29 12:55 UTC] wez@php.net
  [2006-03-29 16:57 UTC] k1ngrs at ntlworld dot com
  [2006-03-30 02:28 UTC] k1ngrs at ntlworld dot com
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 10:00:02 2025 UTC | 
Description: ------------ Sqlite pdo works fine but for some reason the mysql pdo driver will not work and fails on the execute statement: The instruction at "0x00e221aa" reference memory at "0x0000007b". The memory could not be "read". I have the lastest windows dlls for all 3 files (5.1.1.1) php_pdo.dll, php_pdo_sqlite.dll and php_pdo_mysql.dll The php binary came from the Gnope website release 1.0 (includes PHP 5.1.1 (built: Nov 27 2005 21:39:02)) Regards Rob Reproduce code: --------------- <?php $user="root"; $pass="12345"; $db = new PDO('mysql:host=localhost;dbname=mysql', $user, $pass); $sth = $db->prepare("select * from user"); $sth->execute(); ?> Expected result: ---------------- No output expected. Actual result: -------------- The instruction at "0x00e221aa" reference memory at "0x0000007b". The memory could not be "read".