I have a set of functions defined in an Access database. Is it possible to use these functions in a VB application as follows...
Function TranslateIt will convert a character into some other string. If I use this SQL statement in Access it will run just fine - SELECT TranslateIT(myField) FROM tblWhatever.
But, when I try and use this statement to create an ADO Recordset I get the following error: "Undefined function 'TranslateIt' in expression.
I am attempting to do with an Access database what the DECODE function in Oracle does.
Thanks in advance for any ideas/help!
Function TranslateIt will convert a character into some other string. If I use this SQL statement in Access it will run just fine - SELECT TranslateIT(myField) FROM tblWhatever.
But, when I try and use this statement to create an ADO Recordset I get the following error: "Undefined function 'TranslateIt' in expression.
I am attempting to do with an Access database what the DECODE function in Oracle does.
Thanks in advance for any ideas/help!