how to get info from DbConn.SQLExecute(SqlStr)

My Code
Dim SqlStr As String

SqlStr=“Delete From Clientes Where ID=’” + TxtID.text.trim + "’ and balance=0 "
Session.DbConn.SQLExecute(SqlStr)
if Session.DbConn.Error Then
MsgBox " *** Error on Add Customer ** " + Session.DbConn.ErrorMessage
end if

how i can get how many rows affect when run delete

What DB? In MySQL and Maria I believe there is a Row_Count function you can query

SQLITE

SELECT CHANGES() ;