catch Sql Query error
HelloI want to update a database via the New SQL Query function:Names Default To Here( 1 );
obj = New SQL Query(
Connection("DB connection string"),
Custom SQL "
UPDATE table
SET Column_1 = 1
where Column_2 = '2'
")
);
Error_Msg = Log capture( obj << Run;);
I get the following error message:""
Error running SQL Query:
[Server] Invalid object name table
Log Capture only get the empty "" str...