The InsertData method inserts data into the database storage.
DBStorage.InsertData(Null, Data)
The following example creates and initializes a Dictionary object to a set of values, and then inserts the object's data into a database table:
<% Set Dictionary = Server.CreateObject("Commerce.Dictionary")
Dictionary.order_id = orderID
Dictionary.shopper_id = shopperID
Dictionary.status = 5
call MSCSReceiptStorage.InsertData(Null, Dictionary)
%>