Thanks, but I have read it before.:sign0089:
In this exemple, imagine that the content in a row, at the "col1" is too long. With cursor1.getstring it is not posible to take all the content. If I change cursor1.getstring for cursor.getlong do error.
Sub LogTable1
Dim Cursor1 As Cursor
Cursor1 = SQL1.ExecQuery("SELECT col1, col2, col3 FROM table1")
For i = 0 To Cursor1.RowCount - 1
Cursor1.Position = i
Log("************************")
Log(Cursor1.GetString("col1")) ' remember: this field is text
Log(Cursor1.GetInt("col2"))
Log(Cursor1.GetInt("col3"))
Next
Cursor1.Close
End Sub
Can you help me
Thanks