php - SQLSTATE[42S02]: Base table or view not found in cakephp -
i using cakephp 2.3.6. works fine on localhost, when upload server, custom query in controller's function throws error saying "table not found". however, table exist.
the database created in such manner don't have other way using custom query. appreciated.
database error
error: sqlstate[42s02]: base table or view not found: 1146 table 'kidzo_v3.children' doesn't exist
query:
insert children(birthdate,gender,user_id) values('1997-11-16','male','14121');
turns out problem used upper case name in custom query :(
Comments
Post a Comment