Skip to content

Instantly share code, notes, and snippets.

View rederlo's full-sized avatar

Ederlo Rodrigo de Oliveira rederlo

View GitHub Profile
@rederlo
rederlo / ConexaoMysql.java
Last active September 16, 2015 02:08
Examplo connection mysql java
package br.com.biblioteca.conn;
import java.sql.Connection;
import java.sql.DriverManager;
public class ConexaoMysql {
private static String url = "jdbc:mysql://127.0.0.1/biblioteca";
private static String user = "root";
private static String password = "";