码迷,mamicode.com
首页 >  
搜索关键字:vim tab    ( 35043个结果
Oracle core03_ACID
ACID特性oracle如何使用undo和redo来保证了关系数据库的ACID特性。 ACID的特性简单描述为:Atomic:以事务为单位的原子性Consistency:保证数据一致性Isolation:不同事务之间的隔离性,未提交的事务对其它会话是不可见的Durablity:提交的事务在系统失败的...
分类:数据库   时间:2014-04-28 02:40:43    阅读次数:694
mysql常用命令用法
1.创建数据库:create database database_name;2.选择数据库:use database_name;3.创建表:create table tablename(column1 data_type1, column2 data_type2,...,columnn dataty...
分类:数据库   时间:2014-04-28 02:34:53    阅读次数:560
Oracle core06_latch&lock
lock and latch在oracle中为了保护共享资源,使用了两种不同的锁机制lock和latch,这两种锁有明显不同点:1,lock和pin,采用的是队列的方式,先来先服务的策略,latch和mutex,采用的是抢占的方式,fast fail模式2,lock可以hold的时间比较长,而lat...
分类:数据库   时间:2014-04-28 02:21:00    阅读次数:889
java关键字
java关键字abstractassertbooleanbreakbytecasecatchcharclassconstcontinuedefaultdodoubleelseenumextendsfinalfinallyfloatforgotoifimplementsimportinstanceof...
分类:编程语言   时间:2014-04-28 02:03:26    阅读次数:563
HTML5 学习
1.details元素 details元素标识用户要求得到并且可以得到的细节信息,用于描述文档或文档某个部分的细节。它可以与summary元素配合使用。summary元素提供标题或图例。标题是可见的,用户点击标题时,会显示出细节信息,也就是details里面定义的信息。HTML 5This doc....
分类:Web程序   时间:2014-04-28 01:51:30    阅读次数:805
oracle core 概述
oracle数据库系统的架构及其复杂,其提供的特性也非常的多。作为一种关系型数据库,oracle提供的基本特性:transactionconcurrencyread consistent而支撑这些特性的必不或缺的组件组成了Oracle Core。如下面的缩略图所示:这个oracle系统的架构图涵盖了...
分类:数据库   时间:2014-04-28 01:14:08    阅读次数:621
线性时间将两个有序链表合成一个有序链表(constant additional space)
description:given two sorted singly list, merge them into one using constant additional spacealgorithm:we will reference the two linked list as list1 ...
分类:其他好文   时间:2014-04-28 00:32:52    阅读次数:711
csharp:Google TTS API text to speech
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-04-27 23:51:43    阅读次数:1188
iOS数据持久化存储
本文中的代码托管在github上:https://github.com/WindyShade/DataSaveMethods相对复杂的App仅靠内存的数据肯定无法满足,数据写磁盘作持久化存储是几乎每个客户端软件都需要做的。简单如“是否第一次打开”的BOOL值,大到游戏的进度和状态等数据,都需要进行本...
分类:移动开发   时间:2014-04-27 22:44:13    阅读次数:819
Conceptual Blockbusting Intro & chap1
Page 6:Natural tendency in problem solving is to pick the first solution that comes to mind and run with it. The disadvantage of this approach is you ...
分类:其他好文   时间:2014-04-27 21:27:40    阅读次数:510
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!