I have some fields in a SQL table which are type decimal(x,y). In the VBA how do I represent these in the ADO parameters for a stored procedure argument? For example, a varchar would be declared using adVarChar:
Set prm = cmd.CreateParameter("@ColumnX", adVarChar, adParamInput, 50)