1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
public interface Constants {
final static String SUCCESS="success";
final static String ECHEC="error";
final static String ATTRIBUTE_NAME="name";
final static String ATTRIBUTE_LASTNAME="lastName";
/*** requetes ****/
final static String SQL_REQUETE_CLIENT=
"SELECT * FROM CLIENT ";
final static String SQL_DELETE_ALL_CLIENT=
"DELETE FROM CLIENT";
final static String SQL_REQUETE_COUNT_CLIENT=
"SELECT count(*) FROM CLIENT ";
final static String SQL_REQUETE_INSERT_CLIENT=
"INSERT INTO CLIENT(cliNom,cliPrenom) VALUES(";
} |
Partager