You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Presently, node-teradata supports executeQuery via read() and readPreparedStatement(), and executeUpdate via write() and writePreparedStatement(). The JDBC API has a third method for executing statements called execute.
execute: executes SELECT and non-SELECT statements. But, more importantly, it can execute multiple statements, which is something neither of the other methods support
Acceptance Criteria
New method execute executes one or more (read and/or write) statements within the query
New method executePreparedStatement executes one or more (read and/or write) statements within the query, using prepared statements
execute and executePreparedStatement returns an array of results:
One result for each statement within the query
Results are indexed by order of statement execution