|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-14 02:21 UTC] mfischer@php.net
[2002-05-14 02:41 UTC] mbretter at jawa dot at
[2002-05-14 03:08 UTC] mbretter at jawa dot at
[2002-05-14 03:52 UTC] mfischer@php.net
[2002-05-15 03:28 UTC] mbretter at jawa dot at
[2002-05-30 19:39 UTC] phanto@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
Hi, this script lets php crash: $conn = new COM( "ADODB.Connection" ); $conn->Provider = 'SQLOLEDB'; $conn->Open( "Server=wincubix;Uid=oebb;Pwd=oebb;Database=cubix" ); $conn->Execute('SET DATEFORMAT ymd'); $rs = new COM( "ADODB.Recordset" ); $rs->ActiveConnection = $conn; $rs->Open("SELECT DISTINCT * FROM news WHERE gueltig_von <= '2002-05-13'"); changing the script like this will prevent the AV //$rs->ActiveConnection = $conn; $rs->Open("SELECT DISTINCT * FROM news WHERE gueltig_von <= '2002-05-13'", $conn); I'm using the latest MSDAC (2.7) and the latest snapshot of php