I'm use select in a table DBF with ADO, and the accentuation in RecordSet is wrong. Anyone know how to fix?
Code: Select all | Expand
Function U_Teste()
Local oConn
Local cSQL
Local rsClaims
oConn:= CreateObject("ADODB.Connection")
oConn:Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\temp\dados;Extended Properties=DBASE IV")
cSQL := "SELECT * FROM SP50001"
rsClaims := CreateObject("ADODB.Recordset")
rsClaims:CursorLocation := 3 // adUseClient
rsClaims:CursorType := 3 // adOpenStatic
rsClaims:ActiveConnection:= oConn
rsClaims:Open(cSQL)
rsClaims:MoveFirst()
MsgStop(rsClaims:Fields("SP5_CODIGO"):Value) //HERE IS TO SHOW 'MIRIÃ' BUT IS SHOWING 'MIRI+'
Return