Im currently interfacing with sqlite via php 4.3.5-RC2.
The latest version of sqlite, distributed by php snaps 
(http://snaps.php.net/win32/PECL_STABLE/) is 2.8.11.
Im currently experiencing behaviour with sqlite that I didn't experience when 
I was using version 2.8.3 several months ago.
If I have a table like
id      foo
1       hello
2       world

If I execute an sql select like ->
SELECT f.id, f.foo FROM table f;
The returned data is ->
f.id    f.foo
1       hello
2       world

Instead of the normal (as in other DBs I've used)
id      foo
1       hello
2       world

Is this the correct/expected behaviour of sqlite?
Thanks for any input you may provide...


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to