iReport是个好东西,现在已经出来了0.5.1的版本了,但是这个工具虽然好用,但是初使用还是会遇到不小的麻烦。下面说下iReport的基本配置:1.一般用iReport的同志都是使用Java的,所有配置JDK的环境就不说了^_^。 2.当然需要去下载iReport-0.5.1了,记得还的捎上个i ...
分类:
其他好文 时间:
2020-03-18 09:41:05
阅读次数:
59
Linkage Actually I just want to practice my English as more as possbile, instead of 「装B」. During my daily job, I use git a little, and usually, some f ...
分类:
其他好文 时间:
2020-03-17 13:50:54
阅读次数:
71
在外层table与内层table嵌套,内外表格都需边框时,设置“border=1”,但边框会重复,造成某些地方边框粗,有些地方边框细 解决方法 1、外表格样式 2、内表格样式 ...
分类:
其他好文 时间:
2020-03-17 10:19:02
阅读次数:
65
较常用的 < < < 小于号 > > > 大于号 ≤ ≤ ≤ 小于等于号 ≥ ≥ ≥ 大于等于号 × × × 乘号 ÷ ÷ ÷ 除号 ? − ? 减号 ± ± ± 加/减 号 ≠ ≠ ≠ 不等于号 ¹ ¹ ¹ ...
分类:
Web程序 时间:
2020-03-16 23:53:38
阅读次数:
131
One kind of a little bit pessimistic truths is that our life is companied with Stressors from time to time, among which catching the deadline, facing ...
分类:
其他好文 时间:
2020-03-16 23:50:44
阅读次数:
84
1、最常用的最直接的就是 DELETE; DELETE FROM table_name WHERE condition; 首先,指定删除数据的表(table_name)。 其次,使用条件来指定要在WHERE子句中删除的行记录。如果行匹配条件,这些行记录将被删除。 请注意,WHERE子句是可选的。如果 ...
分类:
数据库 时间:
2020-03-16 21:48:26
阅读次数:
63
背景: A表、B表两表关联,关联出来的结果里B表有不止一条,需求是只要B表结果中的某一条(按某字段排序) 经过百度,发现 row_number() over(partition by a order by b desc)函数可用(需要说明下,order by 必须有缺少会报错),以下是数据环境及结果 ...
分类:
数据库 时间:
2020-03-16 14:39:20
阅读次数:
292
迭代 /* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() {} Node(int _val) { val = _val; } Node(int _val, vector<N ...
分类:
其他好文 时间:
2020-03-16 13:07:10
阅读次数:
45
/* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() {} Node(int _val) { val = _val; } Node(int _val, vector<Node ...
分类:
其他好文 时间:
2020-03-16 12:43:55
阅读次数:
72
Centos7二进制文件安装MySQL5.7.25 1、删除centos系统自带的mariadb数据库防止发生冲突 ?12rpm qa|grep mariadbrpm e mariadb libs nodeps 2、安装libaio库 ?1yum y install libaio 3、下载并解压my ...
分类:
数据库 时间:
2020-03-16 12:38:10
阅读次数:
59