Fixing bad coding within a SQL query
SQL Server Development expert Greg Low troubleshoots a programming issue within a SQL query.
(configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id,...
Continue Reading This Article
Enjoy this article as well as all of our content, including E-Guides, news, tips and more.
By submitting your email address, you agree to receive emails regarding relevant topic offers from TechTarget and its partners. You can withdraw your consent at any time. Contact TechTarget at 275 Grove Street, Newton, MA.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.

sort_order, set_function, date_added) VALUES ('Image Amplification', 'IMAGE_AMPLIFICATION', 'false', 'Enable to display image amplification and not popup windows. Good for popup blockers.', '4', '9', 'tep_cfg_select_option(array('true', 'false'), ', now()); (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Image Amplification Factor', 'IMAGE_AMPLIFICATION_FACTOR', '2.5', 'The image amplification factor to big image size devided by small image size', '4', '10', now());
My Internet service provider tells me that there is a programming issue within my code. Can you help me fix this error?
If so, you'll need to make the single quotes double quotes, so instead of:
'tep_cfg_select_option(array('true','false')'
You'll need:
'tep_cfg_select_option(array(''true'',''false'')'
Click here to view questions and answers from all of our SQL Server experts.
Dig Deeper on SQL-Transact SQL (T-SQL)
PRO+
Content
Find more PRO+ content and other member only offers, here.
Have a question for an expert?
Please add a title for your question
Get answers from a TechTarget expert on whatever's puzzling you.
Meet all of our SQL Server experts
View all SQL Server questions and answers
0 comments
Oldest Newest