ID:               35283
 Updated by:       [EMAIL PROTECTED]
 Reported By:      SKerres at Kerres-edv dot de
-Status:           Open
+Status:           Bogus
 Bug Type:         PDO related
 Operating System: Windows 2003
 PHP Version:      5.1.0RC6
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------

[2005-11-18 20:38:42] SKerres at Kerres-edv dot de

Description:
------------
I tried to select data from an SQL2005 table witch contains the new
SQL2005 datatype XML.I got no data, but an warning.

Reproduce code:
---------------
CREATE TABLE XMLDaten
(
XDA_Titel varchar(30)   NOT NULL,
XDA_XML   xml
)
------------------------------------------------
$con = new PDO('mssql:host=Server;initial
catalog=Adressen','pschmidt','password');
foreach($con->query('SELECT * FROM dbo.XMLDaten') AS $Zeile)
{
    echo '<br>';
    var_dump($Zeile);
}


Expected result:
----------------
Data

Actual result:
--------------
 Warning: Invalid argument supplied for foreach() in
c:\Inetpub\wwwroot\sql2005.php on line 6


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=35283&edit=1

Reply via email to