I'm using MSFoxPro Visual Studio 6 as the database. Would someone explain the difference between SESSIONTIMEOUT anc CFLOCK TIMEOUT for me, please.
Below is the code in my Application.cfm. When I log out of my CF App, I guess I still have some kind of locks on the database, because when I try to modify the database, it won't let me. I have to wait for 15 minutes before I could modify the database.
<CFAPPLICATION NAME="nsrpims"
CLIENTMANAGEMENT="Yes"
SESSIONMANAGEMENT="Yes"
SESSIONTIMEOUT="#CreateTimeSpan(0, 0, 5, 0)#"
CLIENTSTORAGE="Registry">
<CFLOCK TIMEOUT="10"
THROWONTIMEOUT="Yes"
NAME="#Session.SessionID#"
TYPE="ReadOnly">
Below is the code in my Application.cfm. When I log out of my CF App, I guess I still have some kind of locks on the database, because when I try to modify the database, it won't let me. I have to wait for 15 minutes before I could modify the database.
<CFAPPLICATION NAME="nsrpims"
CLIENTMANAGEMENT="Yes"
SESSIONMANAGEMENT="Yes"
SESSIONTIMEOUT="#CreateTimeSpan(0, 0, 5, 0)#"
CLIENTSTORAGE="Registry">
<CFLOCK TIMEOUT="10"
THROWONTIMEOUT="Yes"
NAME="#Session.SessionID#"
TYPE="ReadOnly">