1.配置tnsnames.ora tnsnames.ora的路径在instantclient文件夹下的network > admin下 找到后进行修改 1 2 3 4 5 6 7 8 9 10 11 12 13 #该文件用于配置数据库连接地址,配置好后,访问该数据库不再需要通过ip:port/ins ...
分类:
数据库 时间:
2020-06-23 20:54:11
阅读次数:
87
题目: 给定一个函数f(x,y)和一个值z,返回所有正整数对x和y,满足f(x,y)== z。f(x,y)为单调递增函数,即:f(x,y)<f(x + 1,y)f(x,y)<f(x,y + 1) Example 1: Input: function_id = 1, z = 5 Output: [[1 ...
分类:
其他好文 时间:
2020-06-23 15:25:02
阅读次数:
47
下面这篇微软官方文档,介绍了如何在ASP.NET Core中自定义中间件(middleware): Write custom ASP.NET Core middleware 其中注意这句话: Additional parameters for the constructor and Invoke/I ...
分类:
Web程序 时间:
2020-06-22 23:13:52
阅读次数:
68
备份数据 由于MySQL数据库是基于磁盘的文件,普通的备份系统和例程就能备份MySQL的数据。但是,由于这些文件总是处于打开和使用状态,普通的文件副本备份不一定总是有效。下面列出这个问题的可能解决方案。 使用命令行实用程序mysqldump转储所有数据库内容到某个外部文件。在进行常规备份前这个实用程 ...
分类:
数据库 时间:
2020-06-22 01:56:21
阅读次数:
78
自定义滚动条实现: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title ...
分类:
Web程序 时间:
2020-06-21 17:59:50
阅读次数:
74
打开文件:C:\ProgramData\Anaconda3\Lib\site-packages\notebook\static\custom\custom.css 输入以下代码: .CodeMirror pre {font-family: Consolas; font-size: 13pt;} * ...
分类:
其他好文 时间:
2020-06-21 00:31:16
阅读次数:
97
NVIDIA空中导航SDK改造5G通信 Transforming Next-Generation Wireless with 5T for 5G and the NVIDIA Aerial SDK NVIDIA Mellanox 5T for 5G技术为构建高效、时间同步的CloudRAN基础设施提 ...
分类:
其他好文 时间:
2020-06-19 13:55:01
阅读次数:
73
一、并行编程 - 数据并行 System.Threading.Tasks.Parallel 类 二、并行编程 - Task任务三、并行编程 - Task同步机制。TreadLocal类、Lock、Interlocked、Synchronization、ConcurrentQueue以及Barrier... ...
一、控制cell输入格式(整数为例) //private void dataGridView5_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) //{ // if (dataGridView1.Rows[e.R ...
在小程序中自定义组件可以通过新建components来实现 参考微信小程序自定义组件文档 https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html 自定义组件可以通过slot来 ...
分类:
微信 时间:
2020-06-17 15:33:02
阅读次数:
85