com.openthinks.libs.sql.dhibernate.support.test.TestSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlibs.sql Show documentation
Show all versions of openlibs.sql Show documentation
The lib of java database ORM simple implementation.
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @Title: TestSession.java
* @Package sql.dhibernate.support.test
* @Description: TODO
* @author minjdai
* @date 2013-12-2
* @version V1.0
*/
package com.openthinks.libs.sql.dhibernate.support.test;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.openthinks.libs.sql.dao.BaseDao;
import com.openthinks.libs.sql.dao.impl.BaseDaoImpl;
import com.openthinks.libs.sql.dhibernate.support.AbstractSession;
import com.openthinks.libs.sql.lang.Configurator;
import com.openthinks.libs.sql.lang.ConfiguratorFactory;
/**
* Used for test
* @author minjdai
*
*/
public class TestSession extends AbstractSession {
@Override
public BaseDao getBaseDao() {
return new BaseDaoImpl() {
@Override
public void setConn(Connection connection) {
}
@Override
public Connection getConn() throws ClassNotFoundException, SQLException {
return null;
}
@Override
public List list(Class clz, String sql, String[] params) {
return new ArrayList();
}
@Override
public Configurator getConfigurator() {
return ConfiguratorFactory.getDefaultInstance();
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy