Interface PkblobsMapper
public interface PkblobsMapper
-
Method Summary
Modifier and TypeMethodDescriptionlongcountByExample(PkblobsExample example) This method was generated by MyBatis Generator.intdeleteByExample(PkblobsExample example) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.intinsert(PkblobsWithBLOBs row) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.selectByExample(PkblobsExample example) This method was generated by MyBatis Generator.selectByExampleWithBLOBs(PkblobsExample example) This method was generated by MyBatis Generator.This method was generated by MyBatis Generator.intupdateByExample(PkblobsKey row, PkblobsExample example) This method was generated by MyBatis Generator.intupdateByExampleSelective(PkblobsWithBLOBs row, PkblobsExample example) This method was generated by MyBatis Generator.intupdateByExampleWithBLOBs(PkblobsWithBLOBs row, PkblobsExample example) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.
-
Method Details
-
countByExample
@SelectProvider(type=PkblobsSqlProvider.class, method="countByExample") long countByExample(PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
deleteByExample
@DeleteProvider(type=PkblobsSqlProvider.class, method="deleteByExample") int deleteByExample(PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
deleteByPrimaryKey
@Delete({"delete from PKBLOBS","where ID = #{id,jdbcType=INTEGER}"}) int deleteByPrimaryKey(PkblobsKey key) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
insert
@Insert({"insert into PKBLOBS (ID, BLOB1, ","BLOB2, CHARACTERLOB)","values (#{id,jdbcType=INTEGER}, #{blob1,jdbcType=VARBINARY}, ","#{blob2,jdbcType=VARBINARY}, #{characterlob,jdbcType=CLOB})"}) int insert(PkblobsWithBLOBs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
insertSelective
@InsertProvider(type=PkblobsSqlProvider.class, method="insertSelective") int insertSelective(PkblobsWithBLOBs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
selectByExampleWithBLOBs
@SelectProvider(type=PkblobsSqlProvider.class, method="selectByExampleWithBLOBs") @Arg(column="ID",javaType=java.lang.Integer.class,jdbcType=INTEGER,id=true) @Arg(column="BLOB1",javaType=byte[][].class,jdbcType=VARBINARY) @Arg(column="BLOB2",javaType=byte[][].class,jdbcType=VARBINARY) @Arg(column="CHARACTERLOB",javaType=java.lang.String.class,jdbcType=CLOB) List<PkblobsWithBLOBs> selectByExampleWithBLOBs(PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
selectByExample
@SelectProvider(type=PkblobsSqlProvider.class, method="selectByExample") @ConstructorArgs(@Arg(column="ID",javaType=java.lang.Integer.class,jdbcType=INTEGER,id=true)) List<PkblobsKey> selectByExample(PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
selectByPrimaryKey
@Select({"select","ID, BLOB1, BLOB2, CHARACTERLOB","from PKBLOBS","where ID = #{id,jdbcType=INTEGER}"}) @Arg(column="ID",javaType=java.lang.Integer.class,jdbcType=INTEGER,id=true) @Arg(column="BLOB1",javaType=byte[][].class,jdbcType=VARBINARY) @Arg(column="BLOB2",javaType=byte[][].class,jdbcType=VARBINARY) @Arg(column="CHARACTERLOB",javaType=java.lang.String.class,jdbcType=CLOB) PkblobsWithBLOBs selectByPrimaryKey(PkblobsKey key) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByExampleSelective
@UpdateProvider(type=PkblobsSqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("row") PkblobsWithBLOBs row, @Param("example") PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByExampleWithBLOBs
@UpdateProvider(type=PkblobsSqlProvider.class, method="updateByExampleWithBLOBs") int updateByExampleWithBLOBs(@Param("row") PkblobsWithBLOBs row, @Param("example") PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByExample
@UpdateProvider(type=PkblobsSqlProvider.class, method="updateByExample") int updateByExample(@Param("row") PkblobsKey row, @Param("example") PkblobsExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByPrimaryKeySelective
@UpdateProvider(type=PkblobsSqlProvider.class, method="updateByPrimaryKeySelective") int updateByPrimaryKeySelective(PkblobsWithBLOBs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByPrimaryKeyWithBLOBs
@Update({"update PKBLOBS","set BLOB1 = #{blob1,jdbcType=VARBINARY},","BLOB2 = #{blob2,jdbcType=VARBINARY},","CHARACTERLOB = #{characterlob,jdbcType=CLOB}","where ID = #{id,jdbcType=INTEGER}"}) int updateByPrimaryKeyWithBLOBs(PkblobsWithBLOBs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS
-