Besoin d'aide HTML servlet
Fermé
Ludovic
-
9 févr. 2011 à 12:57
sakoba2010 Messages postés 157 Date d'inscription lundi 7 février 2011 Statut Membre Dernière intervention 24 juillet 2013 - 10 févr. 2011 à 12:04
sakoba2010 Messages postés 157 Date d'inscription lundi 7 février 2011 Statut Membre Dernière intervention 24 juillet 2013 - 10 févr. 2011 à 12:04
A voir également:
- Besoin d'aide HTML servlet
- Editeur html - Télécharger - HTML
- Br html ✓ - Forum Webmastering
- &Nbsp html - Forum HTML
- Balise </br> - Forum HTML
- Espace html ✓ - Forum HTML
3 réponses
sakoba2010
Messages postés
157
Date d'inscription
lundi 7 février 2011
Statut
Membre
Dernière intervention
24 juillet 2013
15
10 févr. 2011 à 12:04
10 févr. 2011 à 12:04
La manière la plus simple C'est d'utiliser le JSTL voici un exemple
chaine de Connexion:
<s:setDataSource driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/cours" user="root" password=""/>
Requete:
<s:query var="query">
select cat_name from Home_Categories where parent_ID=1
</s:query>
ResultSet:
<c:forEach var="rob" begin="0" end="9" items="${query.rows}">
<b><li/>${rob.cat_name}<br/></b>
</c:forEach>
voici un exemple complet ici:
http://sakoba.byethost13.com/2011/02/10/jsp-how-to-connect-to-database/
chaine de Connexion:
<s:setDataSource driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/cours" user="root" password=""/>
Requete:
<s:query var="query">
select cat_name from Home_Categories where parent_ID=1
</s:query>
ResultSet:
<c:forEach var="rob" begin="0" end="9" items="${query.rows}">
<b><li/>${rob.cat_name}<br/></b>
</c:forEach>
voici un exemple complet ici:
http://sakoba.byethost13.com/2011/02/10/jsp-how-to-connect-to-database/