SkyPHP / skyphp

PHP5 Framework
http://switchbreak.com/skyphp
17 stars 38 forks source link

aql array cache for select * #206

Open will123195 opened 11 years ago

will123195 commented 11 years ago

$aql = "table_name { * }";

The resulting SQL is cached like this:

select field1, field2 from table_name

however, if you drop field2 from the table, subsequent aql selects have an error.