摘要: 阅读全文
posted @ 2019-07-06 09:37 .Concise 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 今天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=0 昨天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=1 7天内的所有数据:sel 阅读全文
posted @ 2018-08-29 13:50 .Concise 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 1. close(), 关闭该数据库连接2. commit(), 提交所有更改内容并释放该Connection对象锁定的资源3. createStatement(), 基于本Connection对象,创建Statement对象4. getAutoCommit(), 获取当前是否是自动提交模式5. g 阅读全文
posted @ 2018-08-28 15:19 .Concise 阅读(4096) 评论(0) 推荐(0) 编辑
摘要: 附:百度地图API:http://lbsyun.baidu.com/cms/jsapi/reference/jsapi_reference.html#a1b0?qq-pf-to=pcqq.c2c <%@page import="com.topinfo.common.util.SessionUtils 阅读全文
posted @ 2018-08-27 15:36 .Concise 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhang854429783/article/details/6785574 阅读全文
posted @ 2018-08-27 13:21 .Concise 阅读(4904) 评论(0) 推荐(0) 编辑
摘要: -Xms256M -Xmx512M -XX:PermSize=256m -XX:MaxPermSize=512m 阅读全文
posted @ 2018-08-24 10:43 .Concise 阅读(558) 评论(0) 推荐(0) 编辑
摘要: Kafka系列文章 [Kafka设计解析(一)- Kafka背景及架构介绍](http://www.jasongj.com/2015/03/10/KafkaColumn1/) [Kafka设计解析(二)- Kafka High Availability (上)](http://www.jasongj 阅读全文
posted @ 2018-08-22 16:59 .Concise 阅读(237) 评论(0) 推荐(0) 编辑
摘要: A,B为String类型 ,A-B=C BigDecimal A=(BigDecimal) map.get("A"); BigDecimal B=(BigDecimal) map.get("B"); Double C=A.subtract(B).doubleValue(); 阅读全文
posted @ 2018-08-22 15:32 .Concise 阅读(1874) 评论(0) 推荐(0) 编辑
摘要: 企业统一社会信用代码 允许格式: 0123456789012 || 0123456789012-12 /[0-9]{13}$|[0-9]{13}-[0-9]{2}$/ 企业13位工商注册号: 允许格式:0123456789012 || 0123456789012-12 /[1-9A-GY]{1}[1 阅读全文
posted @ 2018-08-14 17:27 .Concise 阅读(7442) 评论(0) 推荐(0) 编辑
摘要: 由于在JSP页面中显示数据时,经常需要对显示的字符串进行处理,SUN公司针对于一些常见处理定义了一套EL函数库供开发者使用。这些EL函数在JSTL开发包中进行描述,因此在JSP页面中使用SUN公司的EL函数库,需要导入JSTL开发包,并在页面中导入EL函数库,如下所示:在页面中使用JSTL定义的EL 阅读全文
posted @ 2018-08-09 10:41 .Concise 阅读(887) 评论(0) 推荐(0) 编辑