FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour TDolphin field memo - solved
Posts: 88
Joined: Wed Apr 28, 2010 06:34 PM
TDolphin field memo - solved
Posted: Mon Jun 13, 2016 06:05 PM

saving the memo field is getting these characters when using the ENTER \ r \ and the end of text is with this \ r \ n, which treatment for memo fields harbour to sql?

Posts: 88
Joined: Wed Apr 28, 2010 06:34 PM
Re: TDolphin field memo
Posted: Tue Jun 14, 2016 11:43 AM

good, not sure what it would however changing the class worked

in ClipValue2SQL () function in TDolpSrv.PRG changed to


       CASE "M"
          IF Empty (Value)
             cValue: = "" cTxt + + + cTxt ""
          ELSE
             // CValue: = cTxt Val2Escape + (value) + cTxt
             cValue: = cTxt + value + cTxt
          ENDIF
          EXIT

Continue the discussion