Subject | Re: [firebird-php] Problems conecting to Firebird 1.5 with PHP in RedHat 9 |
---|---|
Author | Kamus |
Post date | 2004-05-22T15:11:48Z |
Hi.
I try with Fedora Core 2 and Firebird 1.0 and works fine.
Is problem of Firebird 1.5 ???
Julio Carlos Canaviri C.
e-mail : e18278@...
Linux Registered User #306526
_____________________________________
I try with Fedora Core 2 and Firebird 1.0 and works fine.
Is problem of Firebird 1.5 ???
>_____________________________________
>
>
>
> Dariusz Zelichowski wrote:
>
> > I had exactly the same problem with FB 1.03 and PHP 4 under
> > Windows 2000 Server. ReferencING of fields by their index
> > won't work but referring to them by field name works OK, so
> > I just settled for that.
> >
> > So you may try changing your code to:
> >
> > while ($fila = ibase_fetch_row($resultado)) {
> > echo $fila->FIELDNAME1.'
> '.$fila->FIELDNAME2.'<br />';
>
> ibase_fetch_row() gives an array with column numbers as the field elements.
> ibase_fetch_assoc() gives an array with column names as the field elements.
>
> I had a problem with ADOdb working only with numbered fields, but going direct is OK
> when I try it.
>
> Dmitry
> Try adding the field names to the query, using * is very sloppy, and you may not get
> the same order of columns if the database is modified later!
>
> --
> Lester Caine
> -----------------------------
> L.S.Caine Electronic Services
>
>
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
> To visit your group on the web, go
> to:http://groups.yahoo.com/group/firebird-php/ To unsubscribe from this group,
> send an email to:firebird-php-unsubscribe@yahoogroups.com Your use of Yahoo!
> Groups is subject to the Yahoo! Terms of Service.
Julio Carlos Canaviri C.
e-mail : e18278@...
Linux Registered User #306526
_____________________________________