288289290291292293294295
/** * Add a 'IS NOT NULL' clause so the column must not be null. '<>' NULL does not work. */ public Where<T, ID> isNotNull(String columnName) throws SQLException { addClause(new IsNotNull(columnName, findColumnFieldType(columnName))); return this; }
309310311312313314315316