G
Guest
I have an update where I specify the following:
string updateSQL = "update Perform " +
" set venueCd = ?, " +
" performanceDTTM = ?, " +
" performanceDesc = ?, " +
" lotteryPerformance = ?, " +
" lotteryAsgnComplete = ?, " +
" performHandicapLogic = ?, " +
" maxNumOfCompTks = ?, " +
" maxNumOfAdditionalTks = ?, " +
" costOfEachAddTk = ? " +
" where venueCd = ? and " +
" performanceDTTM = ?"
the column performanceDTTM is a datetime column in the access table. I am
passing in a parm that is of OleDbType.Date parm type. The value of the parm
matches the value in the table but the db does not find the row therefore my
update command is not updating the row. Any help would be greatlty
appreciated.
string updateSQL = "update Perform " +
" set venueCd = ?, " +
" performanceDTTM = ?, " +
" performanceDesc = ?, " +
" lotteryPerformance = ?, " +
" lotteryAsgnComplete = ?, " +
" performHandicapLogic = ?, " +
" maxNumOfCompTks = ?, " +
" maxNumOfAdditionalTks = ?, " +
" costOfEachAddTk = ? " +
" where venueCd = ? and " +
" performanceDTTM = ?"
the column performanceDTTM is a datetime column in the access table. I am
passing in a parm that is of OleDbType.Date parm type. The value of the parm
matches the value in the table but the db does not find the row therefore my
update command is not updating the row. Any help would be greatlty
appreciated.