Interface FieldsblobsMapper
public interface FieldsblobsMapper
-
Method Summary
Modifier and TypeMethodDescriptionintinsert(Fieldsblobs row) This method was generated by MyBatis Generator.This method was generated by MyBatis Generator.
-
Method Details
-
insert
@Insert({"insert into FIELDSBLOBS (FIRSTNAME, LASTNAME, ","BLOB1, BLOB2, ","BLOB3)","values (#{firstname,jdbcType=VARCHAR}, #{lastname,jdbcType=VARCHAR}, ","#{blob1,jdbcType=VARBINARY}, #{blob2,jdbcType=VARBINARY}, ","#{blob3,jdbcType=BINARY})"}) int insert(Fieldsblobs row) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSBLOBS -
selectAll
@Select({"select","FIRSTNAME, LASTNAME, BLOB1, BLOB2, BLOB3","from FIELDSBLOBS"}) @Result(column="FIRSTNAME",property="firstname",jdbcType=VARCHAR) @Result(column="LASTNAME",property="lastname",jdbcType=VARCHAR) @Result(column="BLOB1",property="blob1",jdbcType=VARBINARY) @Result(column="BLOB2",property="blob2",jdbcType=VARBINARY) @Result(column="BLOB3",property="blob3",jdbcType=BINARY) List<Fieldsblobs> selectAll()This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSBLOBS
-