PUBLIC Sub SqLLocal_ExecNonQuery( ComandoSql As String)
Try
OpenDBLocal(False)
SqLLocal.ExecNonQuery (ComandoSql)
SqLLocal.Close
Catch
Log(LastException)
End Try
End Sub
PUBLIC Sub SqLLocal_ExecNonQuery2( ComandoSql As String,Args As List )
Try
OpenDBLocal(False)
SqLLocal.ExecNonQuery2 (ComandoSql,Args )
SqLLocal.close
Catch
Log(LastException)
End Try
End Sub
public Sub GetSqlLocal As SQL
OpenDBLocal(False)
Return SqLLocal 'this is a public var
End Sub