; Input parameters:
;  - Connection String
;  - SQL String (INSERT, UPDATE, DELETE)
;
; Result: (-1)   - Error; 
;         (>= 0) - Count of updated records

xs_sql::ExecSQL 'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\your_database.mdb;Mode=ReadWrite;Persist Security Info=False' 'UPDATE tblEmployees SET tblEmployees.Login = "admin", tblEmployees.Password = "" WHERE tblEmployees.EmployeeID = 1'

Pop $R0 ; Get result
Pop $R1 ; Get error message ($R1 or some other)
