摘要: --从0开始查询,查询3条数据; SELECT * from stu LIMIT 0,3; --每页显示3条数据,查询第1页的数据; SELECT * from stu LIMIT 0,3; --每页显示3条数据,查询第2页的数据; SELECT * from stu LIMIT 3,3; --每页 阅读全文
posted @ 2022-11-14 22:46 NiceTwocu 阅读(36) 评论(0) 推荐(0) 编辑
摘要: package com.itheima04; import javax.swing.*; public class UserLoginFrame extends JFrame { public UserLoginFrame() { //窗体初始化 initframe(); //绘制窗体 paintV 阅读全文
posted @ 2022-11-14 22:33 NiceTwocu 阅读(11) 评论(0) 推荐(0) 编辑