alter table student_info modify id int(3); -- 先删除自增约束 alter table student_info drop primary key; -- 再删除主键约束 alter table student_info drop id; -- 再删除该字 ...
分类:
其他好文 时间:
2021-06-22 17:54:17
阅读次数:
0
一、简述 面向过程与面向对象: 面向过程:是一种以过程为中心的编程思路,功能的每一块都是由自己来实现的 面向对象:是一种以对象为中心的编程思路,通过指挥对象实现具体的功能 面向对象的三条主线: Java类及类的成员:属性,方法,构造器,代码块和内部类 面向对象的三大特征:封装型,继承性,多态性,(抽 ...
分类:
其他好文 时间:
2021-06-22 17:52:05
阅读次数:
0
BUG:使用element ui table 复选框功能时,当勾选完成后 去执行一些事件,勾选取消了。 解决:①为table-column添加reserve-selection属性 ②为table添加row-key方法 返回一个唯一的值 :row-key="方法名" 方法名(row){return ...
分类:
其他好文 时间:
2021-06-21 21:10:08
阅读次数:
0
1.今天继续学习fragment 布局就不放了 重要代码: MyFragment.java: public class MyFragment extends Fragment { private String content; public MyFragment(String content) { ...
分类:
其他好文 时间:
2021-06-21 21:09:34
阅读次数:
0
本文主要介绍ASP.NET Core中,在Startup.cs中ConfigureServices()方法中调用services.AddMvc()方法,出现异常(KeyNotFoundException: The given key was not present in the dictionary ...
分类:
Web程序 时间:
2021-06-21 20:44:57
阅读次数:
0
package com.oop.demo05; /** * <p> * * </p> * * @author: wfs * @date: 2021/6/21 */ public class Student { private static int age;//静态的变量 多线程 private do ...
分类:
其他好文 时间:
2021-06-21 20:35:39
阅读次数:
0
事务 1. 事务的基本介绍 1. 概念: * 如果一个包含多个步骤的业务操作,被事务管理,那么这些操作要么同时成功,要么同时失败。 2. 操作: 1. 开启事务: start transaction; 2. 回滚:rollback; 3. 提交:commit; 3. 例子: CREATE TABLE ...
分类:
其他好文 时间:
2021-06-21 20:30:38
阅读次数:
0
预备条件: 注册 heroku.com ;注册github ,新建公共或私人repository; 安装git bash; 1、复制git 链接(如果是https格式的,每次签入项目时会要求输入github的用户名和密码,如果选择SSH格式,每次签入push时不需要输入信息,但是事先在电脑上保存SS ...
分类:
其他好文 时间:
2021-06-21 20:25:11
阅读次数:
0
1 aliyun OSS 1. 1 迁移教程 https://help.aliyun.com/document_detail/95159.html 1.2 步骤: 创建bucket创建IAM,并授予AliyunMGWFullAccess权限,获取key and secert创建源数据地址: 注意en ...
分类:
其他好文 时间:
2021-06-21 20:23:38
阅读次数:
0
今天完善注册的后台代码 用户协议的代码 public class Policy extends AppCompatActivity { private long mExitTime; @Override public boolean onKeyDown(int keyCode, KeyEvent e ...
分类:
其他好文 时间:
2021-06-21 20:16:14
阅读次数:
0