Hi,
I want to present some basic data about some products that are in an OSCommerce database, tables products and products_description.
The SQL is like this:
Is there a way to hack this apart and squeeze it into the ChronoConnectivity format in the component?
Thanks,
Ken
I want to present some basic data about some products that are in an OSCommerce database, tables products and products_description.
The SQL is like this:
SELECT jos_osc_products_description.language_id, jos_osc_products_description.products_name, jos_osc_products_description.products_description, jos_osc_products.products_price, jos_osc_products.products_status FROM jos_osc_products INNER JOIN jos_osc_products_description ON jos_osc_products.products_id = jos_osc_products_description.products_id WHERE (((jos_osc_products_description.language_id)=1) AND ((jos_osc_products.products_status)=1));Products, description, and price where the language is English and the status is Active.
Is there a way to hack this apart and squeeze it into the ChronoConnectivity format in the component?
Thanks,
Ken