MCPcopy Create free account
hub / github.com/MariaDB/server / ExecutePrep

Method ExecutePrep

storage/connect/JdbcInterface.java:269–283  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

267 } // end of SetNullParm
268
269 public int ExecutePrep() {
270 int n = -3;
271
272 if (pstmt != null) try {
273 n = pstmt.executeUpdate();
274 } catch (SQLException se) {
275 SetErrmsg(se);
276 n = -1;
277 } catch (Exception e) {
278 SetErrmsg(e);
279 n = -2;
280 } //end try/catch
281
282 return n;
283 } // end of ExecutePrep
284
285 public boolean ClosePrepStmt() {
286 boolean b = false;

Callers

nothing calls this directly

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected