Use the Access VBA convert functions (e.g. CInt) instead of CAST() in the JetDriver
Description
Access doesn't know the CAST() expression. We have to use the VBA convert functions instead. This patch converts CAST(x AS INT) to CInt( x ). Other types are supported as well.
Access doesn't know the
CAST()
expression. We have to use the VBA convert functions instead.This patch converts
CAST(x AS INT)
toCInt( x )
. Other types are supported as well.