Uses of Interface
com.jk.data.datasource.JKDataSource
Packages that use JKDataSource
Package
Description
-
Uses of JKDataSource in com.jk.data.backup
Constructors in com.jk.data.backup with parameters of type JKDataSourceModifierConstructorDescriptionDataBaseBackup
(JKDataSource dataSource) This method constructs a newDataBaseBackup
with a specified data source.DatabaseInfo
(JKDataSource con) This method is yet to be implemented (TBI). -
Uses of JKDataSource in com.jk.data.dataaccess
Methods in com.jk.data.dataaccess that return JKDataSourceModifier and TypeMethodDescriptionstatic JKDataSource
JKDataAccessFactory.getDefaultDataSource()
This method retrieves the default data source.Methods in com.jk.data.dataaccess with parameters of type JKDataSourceModifier and TypeMethodDescriptionstatic JKDataAccessService
JKDataAccessFactory.getDataAccessService
(JKDataSource dataSource) This method gets the data access service using the provided data source.static JKObjectDataAccess
JKDataAccessFactory.getObjectDataAccessService
(JKDataSource dataSource) This method gets the object data access service using the provided data source.static void
JKDataAccessFactory.setDefaultDataSource
(JKDataSource impl) This method sets the default data source to the provided one. -
Uses of JKDataSource in com.jk.data.dataaccess.core
Methods in com.jk.data.dataaccess.core that return JKDataSourceModifier and TypeMethodDescriptionprotected JKDataSource
JKDataAccessImpl.getDataSource()
This method returns theJKDataSource
instance that is used for managing database connections in the context of this class.Constructors in com.jk.data.dataaccess.core with parameters of type JKDataSourceModifierConstructorDescriptionJKDataAccessImpl
(JKDataSource dataSource) This method constructs a newJKDataAccessImpl
using the provided data source. -
Uses of JKDataSource in com.jk.data.dataaccess.orm
Methods in com.jk.data.dataaccess.orm that return JKDataSourceModifier and TypeMethodDescriptionprotected JKDataSource
JKObjectDataAccessImpl.getDataSource()
This method retrieves the data source, if it's null, it returns the default data source.Constructors in com.jk.data.dataaccess.orm with parameters of type JKDataSourceModifierConstructorDescriptionJKObjectDataAccessImpl
(JKDataSource dataSource) This method constructs a newJKObjectDataAccessImpl
with the provided data source. -
Uses of JKDataSource in com.jk.data.datasource
Methods in com.jk.data.datasource that return JKDataSourceModifier and TypeMethodDescriptionstatic JKDataSource
JKDataSourceFactory.createDataSource
(String driver, String url, String userName, String password, Class<?> dialect, String datasourceName) This method creates a newJKDataSource
instance with the provided database configuration.static JKDataSource
JKDataSourceFactory.createDataSource
(String name, Properties prop) This method creates a new JKDataSource instance with the provided name and properties.JKSession.getConnectionManager()
This method returns the connection manager responsible for managing the database connections.static JKDataSource
JKDataSourceFactory.getDataSource
(String prefix) This method retrieves aJKDataSource
instance with the specified prefix.static JKDataSource
JKDataSourceFactory.getDefaultDataSource()
This method gets the default data source.Constructors in com.jk.data.datasource with parameters of type JKDataSourceModifierConstructorDescriptionJKSession
(JKDataSource connectionManager) This method constructs a newJKSession
using the provided connection manager. -
Uses of JKDataSource in com.jk.data.datasource.impl
Classes in com.jk.data.datasource.impl that implement JKDataSourceModifier and TypeClassDescriptionclass
This class is an abstract base class that implements theJKDataSource
interface.class
This class extendsJKAbstractDataSource
and provides specific functionality for configuring and managing Hibernate-based data sources.class
This class extendsJKHibernateDataSource
and provides a specialized data source for plain JDBC connections. -
Uses of JKDataSource in com.jk.data.dynamic.paging
Methods in com.jk.data.dynamic.paging with parameters of type JKDataSource -
Uses of JKDataSource in com.jk.data.vendors.h2
Constructors in com.jk.data.vendors.h2 with parameters of type JKDataSourceModifierConstructorDescriptionH2DataAccess
(JKDataSource dataSource) This method constructs a newH2DataAccess
with the provided data source. -
Uses of JKDataSource in com.jk.data.vendors.mysql
Constructors in com.jk.data.vendors.mysql with parameters of type JKDataSourceModifierConstructorDescriptionMysqlDataAccess
(JKDataSource dataSource) This method constructs a newMysqlDataAccess
with the provided data source. -
Uses of JKDataSource in com.jk.data.vendors.oracle
Constructors in com.jk.data.vendors.oracle with parameters of type JKDataSourceModifierConstructorDescriptionJKOracleDataAccess
(JKDataSource dataSource) This method constructs a newJKOracleDataAccess
with the provided data source.