repository代码: package com.fancy.miniflow.repository; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository;import org.sp ...
分类:
数据库 时间:
2020-06-17 12:57:54
阅读次数:
216
问题现象:问题原因:因为SessionRecording管理员日志无法记录到数据库,此原因可能是在安装过程中填写的账号没有数据库权限。解决方法:1.赋予账号数据库权限2.关闭强日志记录
分类:
其他好文 时间:
2020-06-17 01:10:02
阅读次数:
102
import MySQLdb #查询数量 def Count(cur): count=cur.execute('select * from Student') print ('there has %s rows record' % count) #插入 def Insert(cur): sql = ...
分类:
数据库 时间:
2020-06-15 17:54:50
阅读次数:
78
一、Log4j简介Log4j有三个主要的组件:Loggers(记录器),Appenders (输出源)和Layouts(布局)。这里可简单理解为日志类别,日志要输出的地方和日志以何种形式输出。综合使用这三个组件可以轻松地记录信息的类型和级别,并可以在运行时控制日志输出的样式和位置。1、Loggers ...
分类:
其他好文 时间:
2020-06-13 23:24:46
阅读次数:
53
在/usr/local/freeswitch/conf/dialplan/default.xml文件里,<extension name="Local_Extension">节下面 <action application="set" data="RECORD_TITLE=Recording ${des ...
分类:
其他好文 时间:
2020-06-13 13:05:46
阅读次数:
139
SELECT to_json('some "text"'::text)select array[to_json('Some "text"'::TEXT)] ; select array_to_json(array[to_json('Some "text"'::TEXT)]) ; select arr ...
分类:
数据库 时间:
2020-06-13 09:14:54
阅读次数:
327
1.获取2019-2020年每个月份的充值总额 USE xchat; SELECT month(update_time) as month,sum(amount) FROM charge_record WHERE buss_type=0 and charge_status=2 and charge_ ...
分类:
其他好文 时间:
2020-06-12 20:35:33
阅读次数:
119
foucs时无边框需设置outline input { border: 0; outline: none; } ...
分类:
Web程序 时间:
2020-06-12 20:02:03
阅读次数:
76
1.数据清洗 步骤: 1.查询charge_record表业务类型为充值且订单状态为成功的数据 2.将上述数据转移到本地数据库 使用如下脚本: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=33 ...
分类:
数据库 时间:
2020-06-12 19:54:51
阅读次数:
89
1.数据来源 charge_record表数据 提取代码如下: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=3306, user='***', passwd='***', db='***', ...
分类:
数据库 时间:
2020-06-12 18:39:28
阅读次数:
134