c-innovacion2/resoft/include/db/db_connect.jsp

15 lines
507 B
Plaintext

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ page import="java.sql.*,java.util.*"%>
<%
Class.forName("org.mariadb.jdbc.Driver");
try{
// Connection conn = DriverManager.getConnection("jdbc:mariadb://localhost:3306/cinnovacion","cinnovacion","c0ncyt3c");
Connection conn = DriverManager.getConnection("jdbc:mariadb://localhost:3306/cinnovacion","root","asdf1234");
Statement stmt=conn.createStatement();
Statement stmt2=conn.createStatement();
%>