|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-11 04:38 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 09:00:02 2025 UTC |
Description: ------------ When selecting columns using the <table>.<columname> the results name the column "<table>.<columname>". This could be considered correct except that it is different from every other database binding. Reproduce code: --------------- $rs = sqlite_query("select stuff.name from stuff where stuff.id = 1",$connection); print_r(sqlite_fetch_array($rs, SQLITE_ASSOC)); Expected result: ---------------- array( [name] => "name" ) Actual result: -------------- array( [stuff.name] => "name" )