类 ConfigInfoTagMapperByDerby
- java.lang.Object
-
- com.alibaba.nacos.plugin.datasource.mapper.AbstractMapper
-
- com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoTagMapperByDerby
-
- 所有已实现的接口:
ConfigInfoTagMapper,Mapper
public class ConfigInfoTagMapperByDerby extends AbstractMapper implements ConfigInfoTagMapper
The derby implementation of ConfigInfoTagMapper.- 作者:
- hyx
-
-
构造器概要
构造器 构造器 说明 ConfigInfoTagMapperByDerby()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 java.lang.StringfindAllConfigInfoTagForDumpAllFetchRows(int startRow, int pageSize)Query all tag config info for dump task.java.lang.StringgetDataSource()Get the datasource name.java.lang.StringgetTableName()Get the name of table.java.lang.StringupdateConfigInfo4TagCas()Update tag configuration information.-
从类继承的方法 com.alibaba.nacos.plugin.datasource.mapper.AbstractMapper
count, delete, getPrimaryKeyGeneratedKeys, insert, select, update
-
-
-
-
方法详细资料
-
updateConfigInfo4TagCas
public java.lang.String updateConfigInfo4TagCas()
从接口复制的说明:ConfigInfoTagMapperUpdate tag configuration information. The default sql: UPDATE config_info_tag SET content=?, md5 = ?, src_ip=?,src_user=?,gmt_modified=?,app_name=? WHERE data_id=? AND group_id=? AND tenant_id=? AND tag_id=? AND (md5=? or md5 is null or md5='')- 指定者:
updateConfigInfo4TagCas在接口中ConfigInfoTagMapper- 返回:
- The sql of updating tag configuration information.
-
findAllConfigInfoTagForDumpAllFetchRows
public java.lang.String findAllConfigInfoTagForDumpAllFetchRows(int startRow, int pageSize)从接口复制的说明:ConfigInfoTagMapperQuery all tag config info for dump task. The default sql: SELECT t.id,data_id,group_id,tenant_id,tag_id,app_name,content,md5,gmt_modified FROM ( SELECT id FROM config_info_tag ORDER BY id LIMIT startRow,pageSize ) g, config_info_tag t WHERE g.id = t.id- 指定者:
findAllConfigInfoTagForDumpAllFetchRows在接口中ConfigInfoTagMapper- 参数:
startRow- The start index.pageSize- The size of page.- 返回:
- The sql of querying all tag config info for dump task.
-
getTableName
public java.lang.String getTableName()
从接口复制的说明:MapperGet the name of table.- 指定者:
getTableName在接口中Mapper- 返回:
- The name of table.
-
getDataSource
public java.lang.String getDataSource()
从接口复制的说明:MapperGet the datasource name.- 指定者:
getDataSource在接口中Mapper- 返回:
- The name of datasource.
-
-