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

com.lab.dao.CDao Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package com.lab.dao;

import com.github.youyinnn.youdbutils.dao.YouDao;
import com.lab.model.Company;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;

/**
 *
 * @author youyinnn
 *
 */
public class CDao extends YouDao {

    public void a() throws SQLException {

        String sql = "SELECT * FROM COMPANY ;";

        ResultSet resultSet = modelHandler.executeStatementQuery(sql);

        ArrayList arrayList = modelResultFactory.getResultModelList(resultSet);

        for (Company o : arrayList) {
            System.out.println(o);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy