variables.datasource = arguments.configBean.getConfigSetting("datasource");
variables.modelMapping = arguments.configBean.getConfigSetting("mapping");
variables.tableNamePrefix = arguments.configBean.getConfigSetting("tableNamePrefix");
INSERT INTO #variables.tableNamePrefix#comments
(
commentID,
photoID,
commentText,
commentDate,
commentIP,
commentName,
commentEmail
)
VALUES (
,
,
,
,
,
,
)
select commentID,photoID,commentText,commentDate,commentIP,commentName,commentEmail
from #variables.tableNamePrefix#comments
where commentID =
DELETE FROM #variables.tableNamePrefix#comments
WHERE commentID =