15 lines
507 B
Plaintext
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","c0ncyt3c");
|
|
|
|
|
|
Statement stmt=conn.createStatement();
|
|
Statement stmt2=conn.createStatement();
|
|
|
|
%>
|