1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
package test;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.servlet.http.HttpSession;
public class Alerte
{
public Alerte() {
Connection con = new BDD().getCon();
String SqlStr="Select MATRI as MATRICULE, NOM, PRENOM from EMPLOYES ";
try {
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(SqlStr);
} catch (SQLException e) {
e.printStackTrace();
}
}
} |
Partager