Java Web programming Chapter VII of the JSP 7.3 to access the database to create a JDBC data source

7.3 Creating JDBC data source

1. JDBC core knowledge points

2. learning task - to create the database and data tables

Create a database table data

CREATE TABLE users(
id int primary key auto_increment,
name varchar(40),
password varchar(40),
email varchar(60),
birthday date)

Published 35 original articles · won praise 5 · Views 848

Guess you like

Origin blog.csdn.net/m0_43443133/article/details/105252709