|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-04-23 01:07 UTC] badams at ingenico dot com dot au
The following code works for the first sql statement however fails on the odbc_fetch_row for the second when the second parmeter is set. This works for php4.1.2 but fails on php4.2.0
ODBC connected to Access97 database, running Apache2
----------------------------------------------------
CODE
----------------------------------------------------
$DB_TMS = odbc_connect("tms", "", "");
$sql = "select * from users where name='Root' and pass='1111'";
$res = odbc_exec($DB_TMS, $sql);
if( odbc_fetch_row($res)) echo "Found Record <br>";
else echo "No Record Found <br> ";
odbc_free_result($res);
$sql = "select * from users where name='Root' and pass='1111'";
$res = odbc_exec($DB_TMS, $sql);
if( odbc_fetch_row($res, 1)) echo "Found Record <br>";
else echo "No Record Found <br> ";
odbc_free_result($res);
odbc_close_all( );
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 05:00:01 2025 UTC |
ODBC communication also fail with OS: NT40 (and Apache) No error return!! (work with php 4.1.1) Code: <?php $conn = odbc_connect($dsn, $uid, $pwd) or die( "Error DB connect" ); $sql="SELECT * FROM $dbname ORDER BY dateposted DESC"; if(($result = odbc_exec($conn, $sql))) { $bzm = 1; while(odbc_fetch_row($result, $bzm)) { echo odbc_result($result,"name")."<br>"; $bzm++; } } odbc_free_result($result); ?>