可以开始第一关: 1-10关都是GET型 MYSQL基本用法: 查库:select schema_name from information_schema.schemata; 查表:select table_name from information_schema.tables where tabl ...
分类:
数据库 时间:
2020-01-27 13:57:42
阅读次数:
87
图像选择:Main中点击选择图像按钮,启动Head活动用来选择图像, 然后将被选择图像通过bundle发送给Main,同时附带返回值,方便Main来判断 Head布局文件 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:and ...
分类:
移动开发 时间:
2020-01-27 00:17:54
阅读次数:
100
一、简单描述表结构,字段类型 desc tabl_name; 显示表结构,字段类型,主键,是否为空等属性,但不显示外键。 例如:desc table_name 二、查询表中列的注释信息 select * from information_schema.columnswhere table_schem ...
分类:
数据库 时间:
2020-01-26 17:30:13
阅读次数:
91
注意 onRestart的箭头是弄错了,应该指向onStart MainActivity的布局文件和java代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.co ...
分类:
移动开发 时间:
2020-01-26 16:06:58
阅读次数:
121
SpringMVC 开发环境搭建 jar包 web.xml配置 springmvc servlet.xml配置 相应的controller 实现步骤 1. 新建一个web项目 2. 导入相关jar包 3. 编写web.xml,注册DispatcherServlet 4. 编写springmvc配置文 ...
分类:
编程语言 时间:
2020-01-25 18:09:03
阅读次数:
47
SpringMvc框架的简单使用 第一步:导入依赖 同时,引入编译插件,使编译时使用JDK1.8版本(非必须) 第二步:编辑 文件 新增springmvc的入口servlet 参数来指定springmvc.xml文件的位置 第三步:编辑 文件 第四步:编写 控制器 最后一步:编写JSP文件 ...
分类:
编程语言 时间:
2020-01-24 13:18:38
阅读次数:
70
// eslint exercise 4 (no-console) // When you're finished with this exercise, run // "npm start exercise.eslint.5" // to move on to the next exercise ...
分类:
其他好文 时间:
2020-01-23 22:36:43
阅读次数:
87
EditText与之前的TextView和Button的用法大体相同,用法案例如下: activity_edit_text.xml: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schema ...
分类:
其他好文 时间:
2020-01-23 22:30:25
阅读次数:
97
less-17 前置基础知识: UPDATEXML (XML_document, XPath_string, new_value); 第一个参数:XML_document是String格式,为XML文档对象的名称,文中为Doc 第二个参数:XPath_string (Xpath格式的字符串) ,如果 ...
分类:
数据库 时间:
2020-01-23 20:00:35
阅读次数:
128
常用属性,界面跳转,按钮学习,按压颜色的变换,图片的插入学习等 工程目录: MainActivity.java: package com.example.revrse; import androidx.appcompat.app.AppCompatActivity; import android.c ...
分类:
其他好文 时间:
2020-01-23 16:48:44
阅读次数:
88