Skip to content
Permalink
25c4088e9a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (13 sloc) 469 Bytes
package kb.howtokb.jdbc;
import java.io.IOException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import kb.howtokb.tools.InformationExtraction;
public class JDBCConnectorTest {
public static void main(String[] args) throws ClassNotFoundException, SQLException, IOException {
List<Integer> ids = new ArrayList<>();
ids.add(2); ids.add(3);
System.out.println(InformationExtraction.getListofActivitySurfaceFromDb(ids));
}
}