摘要: ///服务器 配置电话机 #include <sys/socket.h>int socket(int domain, int type, int protocol); 调用socket函数创建套接字 大厂分机配置好人员 #include <sys/socket.h>int bind(int sock 阅读全文
posted @ 2019-11-21 10:33 SeasonBubble 阅读(286) 评论(0) 推荐(0)
摘要: 1.xml 2.注解 @WebServlet("/MyServlet") 未正式发布一般使用web.xml,利于调试 阅读全文
posted @ 2019-11-01 14:34 SeasonBubble 阅读(409) 评论(0) 推荐(0)
摘要: 实验2:“个人简历小程序” (2学时) 2.1实验目的 掌握数据驱动的开发方式,事件类型和事件对象,以及事件绑定和捕获; 掌握基本布局和交互反馈 2.2实验工具 微信开发者工具 2.3知识点及练习 1. 编写以下代码,查看效果,自行修改字体颜色并给出截图 <!--index.wxml--> <vie 阅读全文
posted @ 2019-10-29 21:29 SeasonBubble 阅读(299) 评论(0) 推荐(0)
摘要: 1.格式 2.例子(若分数增加了10%,则记录到另一个表中) 3.例子(将增加的学生个数记录到表中) 4.例子(工资不得低于4000,否则则修改为4000) 阅读全文
posted @ 2019-05-20 08:45 SeasonBubble 阅读(460) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-04-26 10:35 SeasonBubble 阅读(427) 评论(0) 推荐(0)
摘要: 一.一级指针 1.int *p,*p2; p是变量名,*表明是指针,指针指向地址。 在定义时初始化,如int *p_2 = &b; //定义一个指针,指针指向一个地址 先定义再初始化,如int *p1; p1 = &a;//定义了一个指针,用这个变量名去赋值 *p1是p1所指向的变量的值 2.与数组 阅读全文
posted @ 2019-04-17 19:37 SeasonBubble 阅读(255) 评论(0) 推荐(0)
摘要: 1.login in 2.有关表的操作 建库 建表 单主键与多主键/外键/缺省值 删除表 向表中输入数据 查看表的设置 制作class的副本class1 更改表中的数据 删除表中的数据 选择表中某些部分 删除拥有重复标记的 限制显示的行数 加上操作限制符 降序 升序 按班级降序排列,同一个班的按升序 阅读全文
posted @ 2019-04-09 17:03 SeasonBubble 阅读(201) 评论(0) 推荐(0)
摘要: 可理解存储过程是方法,快速调用,方便使用。 数据库建立新的存储过程: 执行: 查阅文章:https://www.cnblogs.com/ToNi/p/4234370.html (sql sever ) https://www.cnblogs.com/hongmaju/p/4571615.html ( 阅读全文
posted @ 2019-04-09 15:41 SeasonBubble 阅读(386) 评论(0) 推荐(0)
摘要: 1.inner join string sql = "select * from studentsinfo inner join teacher on teacher.姓名 = studentsinfo.姓名 where 学号 like" + input + "or 姓名 like" + input 阅读全文
posted @ 2019-04-02 20:56 SeasonBubble 阅读(539) 评论(0) 推荐(0)
摘要: 1.DataGridView链接数据库 2.链接数据库 using System.Data.SqlClient; SqlConnection con = null; //创建SqlConnection 的对象 string input = EnterText.Text; try //try里面放可能 阅读全文
posted @ 2019-04-01 20:46 SeasonBubble 阅读(396) 评论(0) 推荐(0)