[coldbox:16402] ColdBox 3.5.2 - CacheBox JDBCStore issue

So, do you have a ColdBox provider configured using the JDBC store? It appears to have the table name configure as “cachebox”. Does that table exist?

~Brad

Hi Brad,

Yes to both questions. That is what’s puzzling. My DB contains a table called cachebox and i’ve been using it without issue. Here is my config:

// JDBC Cache

database = {

provider = “coldbox.system.cache.providers.CacheBoxColdBoxProvider”,

properties = {

objectDefaultTimeout = 120,

objectDefaultLastAccessTimeout = 30,

useLastAccessTimeouts = true,

reapFrequency = 5,

evictionPolicy = “LRU”,

evictCount = 5,

maxObjects = 1000,

objectStore = “JDBCStore”,

dsn =“guardly”,

table = “cachebox”,

tableautocreate = “false”

}

}

Thanks.

Nolan