码迷,mamicode.com
首页 >  
搜索关键字:read committed    ( 19786个结果
SQLite中SqlDataReader类
前段时间因工作需要写了个数据库访问工具,其中开始使用sqldatareader,后面改用了sqladpter了,感觉更好用一下,但还是学习一下sqldatareader。 1、常用属性 2、常用方法 3、使用方法 简单记下,防止忘记。原博客https://blog.csdn.net/Lofert/a ...
分类:数据库   时间:2021-04-02 13:21:01    阅读次数:0
BIO、NIO、AIO区别
传统的BIO里面socket.read(),如果TCP RecvBuffer里没有数据,函数会一直阻塞,直到收到数据,返回读到的数据。 对于NIO,如果TCP RecvBuffer有数据,就把数据从网卡读到内存,并且返回给用户;反之则直接返回0,永远不会阻塞。 最新的AIO(Async I/O)里面 ...
分类:其他好文   时间:2021-04-01 12:59:55    阅读次数:0
dockerSearch命令报错解决方案
dockerSearch命令 Get https://index.docker.io/v1/search?q=redis&n=25: dial tcp: lookup index.docker.io on [::1]:53: read udp [::1]:49555->[::1]:53: read:... ...
分类:其他好文   时间:2021-03-31 12:10:21    阅读次数:0
uiautomator2结合python的一些操作
1 import os 2 3 # 获取手机系统信息 4 phone_sys = os.popen('adb shell "cat /system/build.prop | grep "product""').read() 5 print(phone_sys) 6 7 # 获取手机设备型号 8 de ...
分类:编程语言   时间:2021-03-30 13:42:38    阅读次数:0
[Node.js] Resolve path problem in all envs (require.resolve)
When dealing with `fs` library, the common problem you will meet is the path to file. Different envs may have different way to handle the path. The be ...
分类:Web程序   时间:2021-03-30 13:42:21    阅读次数:0
python操作hdfs
import contextlib import pyhdfs class HdfsUtil(object): def __init__(self, hosts='namenode1:9870,namenode2:9870', user_name='hdfs'): self.hosts = host ...
分类:编程语言   时间:2021-03-30 13:29:22    阅读次数:0
excel poi
依赖: <!--xls(03)--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>4.1.2</version> </dependency> <!--xlsx(07)--> ...
分类:其他好文   时间:2021-03-30 13:28:43    阅读次数:0
【原创】Linux虚拟化KVM-Qemu分析(十一)之virtqueue
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: KVM版本:5.9.1 QEMU版本:5.0.0 工具:Source Insight 3.5, Visio 文章同步在 ...
分类:系统相关   时间:2021-03-30 13:07:40    阅读次数:0
内部类
定义一个内部类,直接将内部类定义在外围类的里面。 interface yu{ void sout(); } public class lc_2 { public int num1; private int num2; class innerClass implements yu{ public in ...
分类:其他好文   时间:2021-03-30 13:02:50    阅读次数:0
微信小程序反编译出现错误SyntaxError:Unexpected end of input
在使用wxappUnpacker反编译一些小程序得时候经常会遇到这个问题: 翻译过来是:输入意外终止。借鉴网上其他大佬的看法是因为微信版本升级后,会遇到各种报错, 以及无法获取到wxss的问题。 导致拿不到wxss文件,那么找到反编译脚本下的wuWxss.js,修改runVM方法为: functio ...
分类:微信   时间:2021-03-29 12:43:03    阅读次数:0
19786条   上一页 1 ... 18 19 20 21 22 ... 1979 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!