I recently began developing a project using Nubuilder for my company. So far, I've been very happy with it (even as someone with extremely limited programming experience).
I did have one problem that's sort of stopping me in my tracks. I was attempting to follow tutorial 2 to create a drop-down list. However, I'm having some problems entering the SQL code.
The problem is that after entering the following SQL code and saving...
(this list has been previously created under Lists)SELECT sli_option, sli_description FROM zzsys_list
WHERE sli_name = "Number"
...Nubuilder seems to add \ marks before and after the quotation marks. So after saving and reentering the "Dropdown" screen, the query looks like this:
I've run the original query in phpMyAdmin and it works fine. But this modified one doesn't work. When I try to run the report, I get the following error:SELECT sli_option, sli_description FROM zzsys_list
WHERE sli_name = \"Number\"
Any idea what I'm doing wrong? Is this a known problem?Could not execute : --
--------------------------------------------------------------------------------
SELECT sli_option, sli_description FROM zzsys_list WHERE sli_name = \"Number\"