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

Method SetNullParm

storage/connect/JdbcInterface.java:256–267  ·  view source on GitHub ↗
(int i, int typ)

Source from the content-addressed store, hash-verified

254 } // end of SetUuidParm
255
256 public int SetNullParm(int i, int typ) {
257 int rc = 0;
258
259 try {
260 pstmt.setNull(i, typ);
261 } catch (Exception e) {
262 SetErrmsg(e);
263 rc = -1;
264 } // end try/catch
265
266 return rc;
267 } // end of SetNullParm
268
269 public int ExecutePrep() {
270 int n = -3;

Callers

nothing calls this directly

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected