From: [EMAIL PROTECTED]
Operating system: WIN NT
PHP version: 4.0.4pl1
PHP Bug Type: ODBC related
Bug description: Not allows to retrive text column from DB
$cur=odbc_exec($conn,"myProcedure $id");
if(!$cur) {
/* error handler */
}
odbc_binmode($cur, ODBC_BINMODE_PASSTHRU);
odbc_longreadlen($cur, 24568); /* Allow 24kb thru */
while(odbc_fetch_row($cur)){
$lyrics = odbc_result($cur,1);
/* this is place where I get this line:
SQL error: [Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index, SQL state
S1002 in SQLGetData in... */
--
Edit Bug report at: http://bugs.php.net/?id=10223&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]