salut
je vous demande comment faire une connexion oracle netbeans6.8 par assistant.
Merci
salut
je vous demande comment faire une connexion oracle netbeans6.8 par assistant.
Merci
slt,moi aussi j'ai un pb de connexion entre oracle et netbeans
je n sé pa koi faire chui pressé par le temps et le pfe c' mon code:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<%@ page import="java.sql.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Cnss</title>
</head>
<body>
<% Class.forName("oracle.jdbc.OracleDriver");
Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521e", "cnss", "cnss");
PreparedStatement stmt = con.prepareStatement("select NOM_FORMATION from FORMATION");
ResultSet rs = stmt.executeQuery();
int tot=rs.getRow();
for(int i=0;i<tot;i++)
{System.out.println(rs);
}
stmt.close();
con.close();
%>
///////////////
SVP j'attend votre aide
Bonjour,
Je sais que ça date maintenant, mais avez vous finalement pu trouver une réponse à votre demande?
Partager