I want to save my nettalk wholemessage in a mssql . I use the datatype varchar(max) (in the dct blob) , but when i save my record i get a file system error
if self.WholeMessage <> ''
! This code runs each time an email is downloaded. Here we are simply
! storing the WholeMessage property, which we need to use later (below)
! to load the email into the FileExplorer control.
TempLong = self.WholeMessageLen
if TempLong
pTempString &= new (string(TempLong))
pTempString = self.WholeMessage
end
if ~pTempString &= null
ema:WholeMessage[0: TempLong - 1] = pTempString
dispose (pTempString)
end
end