Uses of Class
cn.dinodev.spring.data.sql.builder.InsertSqlBuilder
Packages that use InsertSqlBuilder
-
Uses of InsertSqlBuilder in cn.dinodev.spring.data.dao
Methods in cn.dinodev.spring.data.dao that return InsertSqlBuilderModifier and TypeMethodDescriptiondefault InsertSqlBuilderJdbcSelectExecutor.newInsert()针对此Entity的新的新增 -
Uses of InsertSqlBuilder in cn.dinodev.spring.data.sql.builder
Methods in cn.dinodev.spring.data.sql.builder that return InsertSqlBuilderModifier and TypeMethodDescription设置列值,使用?占位符设置列值,使用自定义表达式根据条件设置列值,使用?占位符根据条件设置列值,使用自定义表达式InsertSqlBuilder.setIfNotNull(String col, Object value) 当值不为null时设置列值设置JSON类型列值设置JSONB类型列值InsertSqlBuilder.setJsonbIf(boolean cnd, String col, Object value) 根据条件设置JSONB类型列值InsertSqlBuilder.setJsonbIfNotNull(String col, Object value) 当值不为null时设置JSONB类型列值根据条件设置JSON类型列值InsertSqlBuilder.setJsonIfNotNull(String col, Object value) 当值不为null时设置JSON类型列值InsertSqlBuilder.withoutParam(String col, String valueExpr) 设置列值但不添加参数(用于函数调用等)InsertSqlBuilder.withoutParamIf(boolean cnd, String col, String expr) 根据条件设置列值但不添加参数