public interface DdlDetect
Detect non-transactional SQL statements that must run after normal
sql statements with connection set to auto commit true.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic DdlDetectforPlatform(String name) Return the implementation for the given platform.booleantransactional(String sql) Return false if the SQL is non transactional and should run with auto commit.
-
Field Details
-
NONE
-
POSTGRES
-
-
Method Details
-
forPlatform
Return the implementation for the given platform. -
transactional
Return false if the SQL is non transactional and should run with auto commit.
-