I have a couple of variables, @dtQtrBeginDate and dtQtrEndDate.
How would I use it in an insert statement that I have coded in the SQLStatement property?
I'm using this statement, and I'm getting an error:
INSERT INTO csuLog
(vchUserName, dtQtrBeginDate, dtQtrEndDate, vchDescription)
VALUES
('jsmith', @dtQtrBeginDate, @dtQtrEndDate, 'My Basic Description')