View Revisions: Issue #6296

Summary 0006296: DefaultDatabaseWriter sql(...) method parsing sql statement during exception needs changed
Revision 2024-03-18 12:19 by pmarzullo
Description When an exception occurs when executing a send SQL batch is parsing the error and changing a CREATE OR ALTER statement to a CREATE OR CREATE statement.

The parsing sees the ALTER string and changes it to a CREATE, causing the CREATE OR CREATE to be executed.

We should also log the exception that we are trying to parse and determine if we are seeing a object exists error or an object does not exist error.
Revision 2024-03-18 17:42 by pmarzullo
Description When an exception occurs when executing a send SQL batch, it is parsing the SQL and changing a CREATE OR ALTER statement to a CREATE OR CREATE statement.

The parsing sees the ALTER string and changes it to a CREATE, causing the CREATE OR CREATE to be executed.

We should also log the exception that we are trying to parse to easily determine if our parsing is having problems.