NLog.config <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSc ...
分类:
Web程序 时间:
2020-05-15 11:36:18
阅读次数:
82
关于WindowsError: [Error 32]的报错。 ...
分类:
其他好文 时间:
2020-05-14 19:11:40
阅读次数:
68
JDBC:操作所有关系型数据库的规则,即接口;各个数据库厂商去实现接口提供所谓的驱动jar 1:导入jar包 2:注册驱动 3:获取数据库连接对象Connection 4: 定义Sql 5: 获取Statement对象 6 执行sql接收返回结果 resultset 7:释放资源 package c ...
分类:
数据库 时间:
2020-05-14 10:53:59
阅读次数:
62
[toc] 瞬时数据是指存储在内存中的数据。持久化技术可以将内存中的数据和持久状态(保存在存储设备上)之间相互转化。 Android提供了三种持久化方式 文件存储 文件存储不对存储内容进行任何的格式化处理,所有数据都是原封不动保存到文件当中。 将数据存储到文件中 Context类中提供了一个open ...
分类:
移动开发 时间:
2020-05-13 23:10:38
阅读次数:
93
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.18</version> </dependency> package com.example ...
分类:
编程语言 时间:
2020-05-13 09:43:13
阅读次数:
106
对trace/debug/info级别的日志输出,必须使用条件输出形式或者使用占位符的方式。 说明:logger.debug("Processing trade with id: " + id + " and symbol: " + symbol); 如果日志级别是warn,上述日志不会打印,但是会 ...
分类:
其他好文 时间:
2020-05-12 11:41:17
阅读次数:
223
Introduction Diagnostic Log and Trace is an implementation of logging software. The software implementation is open source provided under the Mozilla ...
分类:
其他好文 时间:
2020-05-11 23:47:21
阅读次数:
164
Problem Statement Problem Vestigium means "trace" in Latin. In this problem we work with Latin squares and matrix traces. The trace of a square matrix ...
分类:
其他好文 时间:
2020-05-11 09:15:09
阅读次数:
68
Sat May 09 15:57:04 2020Non critical error ORA-48913 caught while writing to trace file "/u01/app/oracle/diag/rdbms/mdb/mdb/trace/mdb_dbrm_7134.trc"Er ...
分类:
数据库 时间:
2020-05-09 17:15:08
阅读次数:
73
MySQL SQL trace 从 MySQL 5.6 开始,可以使用 trace 查看优化器如何选择执行计划,通过SQL trace来跟踪sql语句的执行过程。通过trace文件能够进一步了解为什么优化器选择A计划, 而不是选择B计划。 打开trace,并设置格式为json SET optimiz ...
分类:
数据库 时间:
2020-05-09 16:59:25
阅读次数:
80