Steve Logan
06/11/2025, 4:14 PMdbc:mysql://[ip]:[port]/[db name]
and the Driver Class is com.mysql.jdbc.Driver
, and Driver Name is mysql-connector-j-9.3.0.jar
.Jim Priest
06/11/2025, 8:47 PMSteve Logan
06/11/2025, 8:51 PMJim Priest
06/11/2025, 8:52 PMSteve Logan
06/12/2025, 12:59 PMcom.mysql.jdbc.Driver
BK BK
06/12/2025, 1:59 PMBK BK
06/12/2025, 2:07 PMthis.datasources["MySQLTestDSN"] = {
class: "com.mysql.cj.jdbc.Driver"
, url: "jdbc:<mysql://localhost:3306/cfmx_db?useUnicode=true&characterEncoding=UTF-8&useLegacyDatetimeCode=true>"
, username: "root"
, password: "my_MySQL_pwd"
};
Steve Logan
06/17/2025, 3:50 PMSteve Logan
06/17/2025, 3:52 PMField [column name] could not be cast to numeric for value "NO".
The field isn't included in the form, and the default in the db is 0 (tiny int). Something in the driver appears to be trying to use "NO". I'm guessing there's some sort of connection string change I can use to revert to the older behavior?