Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@page import="javax.naming.Context" %>
- <%@page import="javax.naming.InitialContext" %>
- <%@page import="javax.sql.DataSource" %>
- <%@page import="javax.sql.Connection" %>
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Consulta Nro 01</title>
- </head>
- <body>
- <h1>Consulta Nr 01</h1>
- <h2>descripciĆ³n de la consulta</h2>
- <%
- try{
- context micontexto = new InitialContext();
- DataSource mifuentededatos=(DataSource)micontexto.lookup("recurso_conexiones_aplicacion");
- Connection miconexion = mifuentededatos.getConnection();
- if(miconexion==null){
- }
- }catch(){
- }
- %>
- <table border = 1>
- <tr>
- <td>dato1</td>
- <td>dato2</td>
- <td>dato3</td>
- <td>dato4</td>
- </tr>
- </table>
- </body>
- </html>
Add Comment
Please, Sign In to add comment