Good day fiveWINERS, I am facing an error trying to use FW_AdoImportFromDBF, given the code:
The table is created in SQL, but empty, I got the error:

I am using
FWH 16.04
Harbour bcc77
Function importDBFÂ
  local oCn, oRs
 Â
  xString := ('Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOGA+';User Id='+xUSERID+';Password='+xPASSWORD )
  oCn := CREATEOBJECT("ADODB.Connection")
   Â
  TRY
   oCn:Open(xString)
  catch oErr
    ?"Unable to read the database"
    return(.F.)
  END TRY
  TRY
    FW_AdoImportFromDBF( oCn,"&dbtest" )
  catch oErr
    ?"Unable to insert information"
    return(.F.)
  END TRY
  ?"Insert successful"
    oCn:Close()
return nilThe table is created in SQL, but empty, I got the error:

I am using
FWH 16.04
Harbour bcc77



