使用MySQL游标 首先,必须使用DECLARE语句声明游标: DECLARE cursor_name CURSOR FOR SELECT_statement; 游标声明必须在变量声明之后。如果在变量声明之前声明游标,MySQL将会发出一个错误。游标必须始终与SELECT语句相关联。 接下来,使用O ...
分类:
数据库 时间:
2020-05-25 19:38:01
阅读次数:
79
1、输入cnpm -v判断是否已经安装,如果显示command not found,则表示未安装 2、输入命令行,sudo npm install -g cnpm --registry=https://registry.npm.taobao.org --verbose // 必须加sudo,以管理员 ...
分类:
系统相关 时间:
2020-05-25 16:01:30
阅读次数:
107
通过pip install flask-sqlacodegen后使用命令:flask-sqlacodegen "mysql://root:123456@IP:3306/movie_cat" --tables user --outfile "/Users/user/PycharmProjects/fl ...
分类:
数据库 时间:
2020-05-24 16:39:14
阅读次数:
134
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.liwenwen.redcup03.mapper.UserMapper.selectByPrimaryKey at org.apa ...
分类:
移动开发 时间:
2020-05-24 16:34:31
阅读次数:
74
1.如果编译时出现“ERROR: Plugin with id 'com.android.application' not found.”错误. 解决方法:请在build.gradle文件中添加以下代码。 buildscript { repositories { google() jcenter() ...
分类:
移动开发 时间:
2020-05-24 00:29:37
阅读次数:
87
Windows git bash 默认没有sudo命令,可以添加win-sudo插件实现该功能 curl -s https://raw.githubusercontent.com/imachug/win-sudo/master/install.sh | sh 如果上面的命令没有用,可以复制https ...
有时候连得上数据库,有时候又连不上. 可能是数据库上当前的连接数目已经超过了它能够处理的最大值. select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允 ...
分类:
移动开发 时间:
2020-05-23 18:13:09
阅读次数:
75
典型如下 第一种import java.util.List;@RestController@RequestMapping("/order")@DefaultProperties(defaultFallback = "fallback4Wait")public class OrderControlle ...
分类:
编程语言 时间:
2020-05-23 11:34:33
阅读次数:
68
出现这个问题是因为系统的环境变量没有正确配置造成的,造成这个原因有很多,比如系统升级,比如不正当操作。解决的方式有两种。 其一:直接在linux命令行界面输入如下,然后回车(导入环境变量,以及shell常见的命令的存放地址): export PATH=/usr/local/sbin:/usr/loc ...
分类:
系统相关 时间:
2020-05-23 00:12:20
阅读次数:
69
This article is post on https://coderwall.com/p/ggmpfa configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution复制代码 ...
分类:
Web程序 时间:
2020-05-22 17:23:45
阅读次数:
75