Hi:
Wondering if anyone knows how to manipulate the returned text in an MS-Access memo field so that '\r\n' can be replaced with '<br />'. The problem is that the ODBC_result function (ODBC driver) is removing these characters from the named field after it is returned to me. So I am trying to replace these characters at the same time I am requesting it. But there seems to be no Replace() function in MS-Access SQL, because it gives and error when I try this:
SELECT REPLACE('memo', '\r\n', '<br/>') as changed FROM database.
Any help or pointers would be appreciated.
PeterMac
Wondering if anyone knows how to manipulate the returned text in an MS-Access memo field so that '\r\n' can be replaced with '<br />'. The problem is that the ODBC_result function (ODBC driver) is removing these characters from the named field after it is returned to me. So I am trying to replace these characters at the same time I am requesting it. But there seems to be no Replace() function in MS-Access SQL, because it gives and error when I try this:
SELECT REPLACE('memo', '\r\n', '<br/>') as changed FROM database.
Any help or pointers would be appreciated.
PeterMac