oracle8.1.6
select site_node.url(s.node_id)
from site_nodes s, apm_packages a
where s.object_id = a.package_id
and a.package_key = 'ecommerce'
select site_node.url(s.node_id)
from site_nodes s, apm_packages a
where s.object_id = a.package_id
and a.package_key = '$package_key'
select c.one_line_summary,
c.rating,
c.user_comment,
to_char(c.last_modified,'Day Month DD, YYYY') last_modified_pretty,
u.email,
u.user_id
from ec_product_comments c,
cc_users u
where c.user_id = u.user_id
and c.product_id = :product_id
$end_of_comment_query
select decode(sign(sysdate-available_date),1,1,null,1,0) as available_p,
color_list, size_list, style_list, no_shipping_avail_p
from ec_products
where product_id = :product_id
select to_char(available_date,'Month DD, YYYY') available_date
from ec_products
where product_id = :product_id
select eco.confirmed_date, eco.creditcard_id, eco.shipping_method,
u.email,
eca.line1, eca.line2, eca.city, eca.usps_abbrev, eca.zip_code, eca.country_code,
eca.full_state_name, eca.attn, eca.phone, eca.phone_time
from ec_orders eco,
cc_users u,
ec_addresses eca
where eco.order_id = :order_id
and eco.user_id = u.user_id(+)
and eco.shipping_address = eca.address_id(+)
insert into ec_user_sessions
(user_session_id, ip_address, start_time, http_user_agent)
values
(:user_session_id, :ip_address , sysdate, :http_user_agent)