18/07/2008, 12:58
|
| | | Fecha de Ingreso: enero-2006 Ubicación: ¿Atlantida, Hesperides, Islas afortunadas?
Mensajes: 2.231
Antigüedad: 19 años Puntos: 19 | |
Respuesta: Conexion Java con SQL Server 2005 Otro ejemplo de: http://club.idecnet.com/~ccastano/fe...105/281105.htm
Código:
import java.sql.*;
public class CreateCoffees {
public static void main(String args[]) {
//String url = "jdbc:mySubprotocol:myDataSource";
String url = "jdbc:mysql://localhost/cafebasedatos"
Connection con;
String createString;
createString = "create table COFFEES " +
"(COF_NAME VARCHAR(32), " +
"SUP_ID INTEGER, " +
"PRICE FLOAT, " +
"SALES INTEGER, " +
"TOTAL INTEGER)";
Statement stmt;
try { //Cargamos el driver
Class.forName("com.mysql.jdbc.Driver");
} catch(java.lang.ClassNotFoundException e) {
System.err.print("ClassNotFoundException: ");
System.err.println(e.getMessage());
}
try { //Establecemos la conexión
//con = DriverManager.getConnection(url, "myLogin", "myPassword");
con = DriverManager.getConnection(url, "root", "mysql");
//Creamos el ststement
stmt = con.createStatement();
//Ejecuta una actualización: crear tablas , insertar , delete ,...
stmt.executeUpdate(createString);
stmt.close();
con.close();
// stmt.executeQuery() : consultas (select)
} catch(SQLException ex) {
System.err.println("SQLException: " + ex.getMessage());
}
}
}
salu2 |