Uses of Interface
com.jk.data.dataaccess.core.JKPopulator

Packages that use JKPopulator
Package
Description
 
  • Uses of JKPopulator in com.jk.data.dataaccess.core

    Methods in com.jk.data.dataaccess.core with parameters of type JKPopulator
    Modifier and Type
    Method
    Description
    <T> T
    JKDataAccessImpl.find(String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query and maps the result to an object using a provided JKPopulator.
    <T> T
    JKDataAccessService.find(String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query and maps the result to an object using a provided JKPopulator.
    <T> T
    JKDataAccessImpl.findAndCacheRecord(String key, String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query, maps the result to an object using a provided populator, and caches the mapped object using the specified table name.
    <T> T
    JKDataAccessService.findAndCacheRecord(String tableName, String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query, maps the result to an object using a provided populator, and caches the mapped object using the specified table name.
    <T> List<T>
    JKDataAccessImpl.getList(String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query and maps the result to a list of objects using a provided populator.
    <T> List<T>
    JKDataAccessService.getList(String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query and maps the result to a list of objects using a provided populator.
    <T> List<T>
    JKDataAccessImpl.getListAndCache(String key, String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query, maps the result to a list of objects using a provided populator, and caches the result for future use.
    <T> List<T>
    JKDataAccessService.getListAndCache(String tableName, String query, JKPopulator<T> populator, Object... params)
    This method executes an SQL query, maps the result to a list of objects using a provided populator, and caches the result for future use.