C语言标准IO库常用函数 1.标准IO文件操作1.1 标准IO >C语言提供的标准IO库<stdio.h>1.1.1 printf函数原型:int printf(constchar *format, ...);用法:printf(“printf =%d\n”, num);会直接把格式符里的字符串打印 ...
分类:
编程语言 时间:
2020-05-08 12:50:04
阅读次数:
118
Description: Flyway failed to initialize: none of the following migration scripts locations could be found: classpath:db/migration Action: Review the ...
分类:
其他好文 时间:
2020-05-07 13:43:30
阅读次数:
300
Administrator@USER-20200307HH MINGW64 /f/Git (master) $ rmdir README.md rmdir: failed to remove 'README.md': Not a directory >删目录的命令 Administrator@USE ...
分类:
其他好文 时间:
2020-05-06 21:47:56
阅读次数:
109
tar GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. tar命令可以将多个文件或目录打包成一个大文件 ...
分类:
系统相关 时间:
2020-05-06 21:32:59
阅读次数:
93
sscanf的作用:从一个字符串中读进于指定格式相符的数据。利用它可以从字符串中取出整数、浮点数和字符串。 sscanf和scanf的区别:scanf是以键盘作为输入源,sscanf是以字符串作为输入源(即处理已经输入的字符串) 原型: int sscanf(const char * str, co ...
分类:
其他好文 时间:
2020-05-06 20:09:33
阅读次数:
73
pg查询元数据,生成表数据字典: 效果: 代码: SELECT A .attname 字段, concat_ws ( '', T .typname, SUBSTRING ( format_type (A .atttypid, A .atttypmod) FROM '\(.*\)' ) ) AS 类型 ...
分类:
数据库 时间:
2020-05-06 20:01:13
阅读次数:
292
时间转字符串: DATE_FORMAT(日期,格式字符串) SELECT DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%s');--now()为当期时间 --结果:2019-08-20 20:40:08 字符串转时间: STR_TO_DATE(字符串,日志格式) SELEC ...
分类:
数据库 时间:
2020-05-06 20:00:34
阅读次数:
75
/var/run/mysqld/的属主和属组属于root,mysql并不能在其中创建文件 手动的新建目录 [root@iz2zei43l28m7vcezzzyyjz apache-tomcat-9.0.0]# mkdir -p /var/run/mysqld/ [root@iz2zei43l28m7 ...
分类:
数据库 时间:
2020-05-06 19:58:12
阅读次数:
99
本文验证了通过mybatis访问数据库时的,增删改查的返回值情况。 直接看代码。 1、service层 /** *@Author: Administrator on 2020/3/12 15:15 *@param: *@return: *@Description:查询同步情况 */ @Overrid ...
分类:
其他好文 时间:
2020-05-06 19:37:42
阅读次数:
54
esxi 6.0 登入报错: 503 Service Unavailable (Failed to connect to endpoint: [N7Vmacore4Http16LocalServiceSpecE:0x1f0b62d8] _serverNamespace = / _isRedirect ...
分类:
其他好文 时间:
2020-05-06 10:22:42
阅读次数:
579