摘要: create table score( name varchar(10), math int, english int ); insert into score VALUES('甲',100,92); insert into score VALUES('乙',85,98); insert into score VALUES('丙',90,95); insert into ... 阅读全文
posted @ 2019-02-01 20:51 学亮编程手记 阅读(210) 评论(0) 推荐(0) 编辑
摘要: --创建数据库 create database web_test1 CHARACTER set utf8; --切换数据库 use web_test1; --查看当前使用的数据库 select DATABASE(); 阅读全文
posted @ 2019-02-01 18:15 学亮编程手记 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 1.1 Servlet的生命周期 1.1.1 Servlet的生命周期概述 1.1.1.1 什么是生命周期 生命周期:一个对象从创建到销毁过程。 1.1.1.2 Servlet的生命周期(*****) Servlet生命周期:Servlet对象从创建到销毁的过程。 l Servlet何时被创建又是何 阅读全文
posted @ 2019-02-01 17:16 学亮编程手记 阅读(148) 评论(0) 推荐(0) 编辑