1. myisam跟memory支持表级别锁定 BDB 页级锁定 Innodb 行级锁定 2.表锁(不是表嫂哈) lock table read //只读表锁,也就是说执行了这个锁后,锁内的操作只能为读操作 select * from ..... unlock...
分类:
数据库 时间:
2014-07-12 13:07:29
阅读次数:
218
*Author:Yuanhonglong *Date:2013-11-29 *1948281915package mine.file.Read_Write;import java.io.BufferedReader;import java.io.File;import java.io.FileIn....
分类:
编程语言 时间:
2014-07-11 12:27:49
阅读次数:
227
FileStream fs1 = new FileStream(folder + strPath, FileMode.Open); byte[] bytes = new byte[fs1.Length]; fs1.Read(byte...
分类:
其他好文 时间:
2014-07-11 11:07:59
阅读次数:
213
BASH中的case结构,可以用于进行多项分支。case "$var" incondition1) ;;condition2) ;;*) default statments;;esac例如:#!/bin/bashecho "Hit a key, then hit return"read...
分类:
其他好文 时间:
2014-07-11 10:44:58
阅读次数:
230
事务的特征:ACID
Atomicity:原子性
Consistency:一致性
Isolation:隔离性
Duration:持久性
在SQL标准中定义了事务的四种隔离级别:
1,read uncommitted 未提交读
事务中的修改,即使没有提交,对其他事务也都是可见的。即事务可以读取未提交的数据,即会产生脏读。
2,read committed 提交读 ...
分类:
数据库 时间:
2014-07-10 22:29:41
阅读次数:
319
疯狂的暑假学习之 汇编入门学习笔记 (七)—— dp,div,dup
参考: 《汇编语言》 王爽 第8章
1. bx、si、di、和 bp
8086CPU只有4个寄存器可以用 “[...]” 中进行单元寻址。
bp:除了默认的段地址是ss,其他与bx一样。
它们所有正确的组合
mov ax,[bx]
mov ax,[si]
mov ax,[di]
mov ax,[dp]
mov ax,[bx+si]
mov ax,[bx+di]
mov ax,[bp+si]
mov ax,[bp+di]
mo...
分类:
其他好文 时间:
2014-07-10 22:15:57
阅读次数:
356
read(10, "NTP0 13690\n", 64)...
分类:
数据库 时间:
2014-07-10 21:16:26
阅读次数:
237
Palindrome
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 51631
Accepted: 17768
Description
A palindrome is a symmetrical string, that is, a string read i...
分类:
其他好文 时间:
2014-07-10 19:53:48
阅读次数:
245
C语言char s[] 和 char *s的区别,下面这个回答讲解的很清晰。
The difference here is that
char *s = "Hello world";
will place Hello world in the read-only parts of the memory and making s a pointer to that,...
分类:
编程语言 时间:
2014-07-10 17:23:56
阅读次数:
267
Oracle工具之--ASM与文件系统及跨网络传输文件OracleDBMS_FILE_TRANSFER可以实现文件系统和ASM磁盘组之间实现文件传输及ASM磁盘组之间跨网络的传输。DBMS_FILE_TRANSFER:TheDBMS_FILE_TRANSFERpackageprovidesprocedurestocopyabinaryfilewithinadatabaseortotransferabinaryf..
分类:
数据库 时间:
2014-07-09 08:37:23
阅读次数:
261