linux常用文件处理命令 一般ls l 查看文件后,一般会带上 rw r r等操作,这表明分别是owner/group/others三种身份的read/write/execute的三种权限 其中r:4,w:2,x:1 linux常用目录处理命令 linux常用文件查看操作 linux系统用户账号的 ...
分类:
系统相关 时间:
2020-01-01 14:54:15
阅读次数:
124
Executor Framework e.g. Runnable interface specifies a task to execute concurrently with other tasks. run() contains the task to perform. Executor Int ...
分类:
编程语言 时间:
2019-12-31 18:23:13
阅读次数:
66
刚编写的一个shell文件执行时突然遇到shell文件不能运行,一下子觉得奇了怪了,明明写的shell文件,而且添加了可执行权限,竟然提示这个结果:如下 尝试对文件的用vim打开该sh文件,输入:set ff ,显示fileformat=unix,说明没有问题(如果显示fileformat=dos, ...
分类:
其他好文 时间:
2019-12-31 12:11:01
阅读次数:
84
命令模型的主要元素: 1、命令 2、命令绑定:命令连接到相关的应用程序逻辑 3、命令源:命令源触发命令, 4、命令目标:应用程序逻辑。 ICommand接口 命令模型的核心是System.Windows.Input.ICommand接口。 该接口包含两个方法和一个事件: void Execute(o ...
SQL报错异常:Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0. --首先明确一点 ...
分类:
其他好文 时间:
2019-12-27 13:52:36
阅读次数:
85
以ms sql server 14 v17为例。 如下表dbo.Q中有一个字段'' 首先在数据库的系统存储过程列表中: 找到sys.sp_addextendedproperty,使用这个为字段添加一个说明。 EXECUTE [sys].[sp_addextendedproperty] @name=N ...
分类:
数据库 时间:
2019-12-27 13:30:48
阅读次数:
96
首先确定项目都能跑通的情况下,在跟项目打包时报错 Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.21.0:test (default-test) on project spring_boot: Ther ...
分类:
编程语言 时间:
2019-12-26 14:47:05
阅读次数:
125
开发中遇见了 vue.runtime.esm.js:1888 DOMException: Failed to execute 'setAttribute' on 'Element': ')' is not a valid attribute name. at baseSetAttr (http:// ...
分类:
其他好文 时间:
2019-12-26 12:58:38
阅读次数:
122
创建表,参考代码如下; import pymysqltest=pymysql.connect('localhost','root','root','test1225')curs=test.cursor()curs.execute('drop table if exists xixi')sql=""" ...
分类:
编程语言 时间:
2019-12-25 23:51:57
阅读次数:
124
shutting down a database 共有四种模式的关机: 1.normal 2.immediate 3.abort 4.tranacatsion 一.shutting down with the normal mode When you shut down a database wit ...
分类:
数据库 时间:
2019-12-23 15:17:41
阅读次数:
116