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 Apr 7, 2026. It is now read-only.
Setting a statement parameter to an untyped null value will cause a NullPointerException. Example:
Statement.newBuilder("INSERT INTO T (K, V) VALUES (@p1, @p2)")
.bind("p1")
.to("k1")
.bind("p2")
.to((Value) null)
.build()))
Untyped null values are often used in ORMs and is commonly used in the JDBC driver. This will also be necessary for PostgreSQL connections, as the PostgreSQL JDBC driver allows applications to supply untyped null parameter values.
Setting a statement parameter to an untyped null value will cause a
NullPointerException. Example:Untyped null values are often used in ORMs and is commonly used in the JDBC driver. This will also be necessary for PostgreSQL connections, as the PostgreSQL JDBC driver allows applications to supply untyped null parameter values.