1: descargar el fichero sqljdbc.zip (enlace desde microsoft)
2: descomprimirlo y agregar al proyecto la libreria sqljdbc.jar. en netbeans es asi: clic derecho al folder librerias dentro del proyecto, clic en add jar/folder y seleccionan sqljdbc.jar
- Click Start, point to Programs, point to Microsoft SQL Server 2005, point toConfiguration Tools, and then click SQL Server Surface Area Configuration.
- On the SQL Server 2005 Surface Area Configuration page, click Surface Area Configuration for Services and Connections.
- On the Surface Area Configuration for Services and Connections page, expandDatabase Engine, click Remote Connections, click Local and remote connections, click the appropriate protocol to enable for your environment, and then click Apply.
Note Click OK when you receive the following message: - On the Surface Area Configuration for Services and Connections page, expandDatabase Engine, click Service, click Stop, wait until the MSSQLSERVER service stops, and then click Start to restart the MSSQLSERVER service.
4: probarlo, dejo un ejemplo a continuacion, la prueba la hice al hacer clic a un boton con nombre jButton1
- private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
- try {
- Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
- Connection conexion =DriverManager.getConnection("jdbc:sqlserver://localhost:1434;databaseName=nombreBaseDeDatos;user=nombreUsuario;password=contraseña;");
- JOptionPane.showMessageDialog(this, "conexion satisfactoria");
- conexion.close();
- } catch (SQLException e) {
- JOptionPane.showMessageDialog(null, e.getMessage());
- } catch (ClassNotFoundException e) {
- JOptionPane.showMessageDialog(null, e.getMessage());
- }
- }
las librerias a utilizar son:
- import java.sql.Connection;
- import java.sql.DriverManager;
- import java.sql.SQLException;
- import javax.swing.JOptionPane;
NOTA: fijarse bien en la cadena de conexion, en el host donde esta localizado sqlserver, el puerto a utilizar, el nombre de la base de datos, el nombre de usuario y la contraseña.
el puerto es opcional.
No hay comentarios.:
Publicar un comentario