db = "xata"
table = "temptable"
I can access the default page by going to the manually created application page and I see a list (initially with no records, then I created one record through phpMyAdmin, and it does show fine!). However I cannot advance beyond this point. I get a number of errors depending on where I try to go. The most telling seems to be this:
uri = my.path.to/xatafront/index.php?-table=temptable&-action=view&-cursor=0&-skip=0&-limit=30&-mode=list
- Code: Select all
Fatal error: Error performing mysql query to get column information from table 'temptable&-action=view&-cursor=0&-skip=0&-limit=30&-mode=list'. The mysql error returned was : 'Table 'xatadb.temptable&-action=view&-cursor=0&-skip=0&-limit=30&-mode=list' doesn't exist'.
On line 477 of file /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xataface/Dataface/Table.php in function printStackTrace()
On line 2375 of file /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xataface/Dataface/Table.php in function Dataface_Table(temptable&-action=view&-cursor=0&-skip=0&-limit=30&-mode=list,Resource id #10,)
On line 977 of file /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xataface/Dataface/Application.php in function loadTable(temptable&-action=view&-cursor=0&-skip=0&-limit=30&-mode=list)
On line 1728 of file /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xataface/Dataface/Application.php in function handleRequest()
On line 3 of file /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xatafront/index.php in funct in /hermes/bosweb26d/b2447/ipw.ussleyte/public_html/xataface/Dataface/Table.php on line 477
I'm only a php newbie and self taught SQL weekend warrior, but it seems that we are trying to open not "temptable" but "temptable&-action=view&...". It's like the application forgot to explode the data passed by the URI.
Where am I going wrong and how do I resolve this?
TIA
Steve