SELECT *
FROM Items
WHERE ParentItemID = #attributes.sending_ItemID#
AND
IsActive = 1
SELECT *
FROM Items
WHERE ID = #check_for_children.ItemID#
INSERT INTO Items
(
CategoryID,
Name,
Description,
ParentItemID,
Price,
IsActive,
IsCheckedByDefault,
RequiresChildSelection,
MaxNumSelectionReq,
IsCollapsible,
SortOrder,
AddedOn
)
VALUES (
#get_main_item.CategoryID#,
'#get_main_item.Name#',
'#get_main_item.Description#',
#attributes.ParentID#,
#get_main_item.Price#,
#get_main_item.IsActive#,
#get_main_item.IsCheckedByDefault#,
#get_main_item.RequiresChildSelection#,
#get_main_item.MaxNumSelectionReq#,
#get_main_item.IsCollapsible#,
#get_main_item.SortOrder#,
#createODBCDateTime(now())#
)
SELECT ID
FROM Items
ORDER BY ItemID DESC
Limit 1