M Mostez Well-Known Member Licensed User Longtime User Jun 4, 2020 #1 I'm using JdbcSQL to insert values into MS SQL table, I want to test result OK or failed. any ideas? Thanks B4X: Public SQLserver As JdbcSQL Public SQLqueryString As String B4X: SQLserver.ExecNonQuery (SQLqueryString) ' i want to test result
I'm using JdbcSQL to insert values into MS SQL table, I want to test result OK or failed. any ideas? Thanks B4X: Public SQLserver As JdbcSQL Public SQLqueryString As String B4X: SQLserver.ExecNonQuery (SQLqueryString) ' i want to test result
Erel B4X founder Staff member Licensed User Longtime User Jun 4, 2020 #2 1. Use the async methods with remote databases. 2. If no exception was thrown then the command was executed successfully. Upvote 0
1. Use the async methods with remote databases. 2. If no exception was thrown then the command was executed successfully.