All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.db.activity.ActivityMapper.xml Maven / Gradle / Ivy

There is a newer version: 6.3.1
Show newest version
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="org.sonar.db.activity.ActivityMapper">

  <insert id="insert" parameterType="Activity" useGeneratedKeys="false">
    insert into activities
    (created_at, log_key, log_type, log_action, user_login, data_field, log_message)
    values (#{createdAt,jdbcType=TIMESTAMP}, #{key,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR},
    #{action,jdbcType=VARCHAR},
    #{author,jdbcType=VARCHAR}, #{data,jdbcType=VARCHAR}, #{message,jdbcType=VARCHAR})
  </insert>

</mapper>





© 2015 - 2025 Weber Informatics LLC | Privacy Policy