码迷,mamicode.com
首页 >  
搜索关键字:storage spacse    ( 3255个结果
HTML5新增核心工具——本地存储
除了Canvas元素外,HMTL5另外一个新增的非常重要的功能是可以在客户端本地存储数据库的Web Storage。本文就介绍下Web Storage以及SQLLite操作。Web Storage分为两类:- sessionStorage:数据保存在session 对象中(临时)- localSto...
分类:Web程序   时间:2014-07-14 10:18:00    阅读次数:292
Linux and the storage ecosystem
Linux is the Swiss Army knife of file systems, and it also offers a wide variety of storage technologies for both desktops and servers. Beyond the fil...
分类:系统相关   时间:2014-07-13 11:46:04    阅读次数:527
ORACLE之ASM学习
ASM(Automatic Storage Management)是Oracle10g R2中为了简化Oracle数据库的管理而推出来的一项新功能,这是Oracle自己提供的卷管理器,主要用于替代操作系统所提供的LVM,它不仅支持单实例,同时对RAC的支持也是非常好。一、ASM由来ASM是Ora.....
分类:数据库   时间:2014-07-13 11:20:45    阅读次数:377
JQueryMobile页面跳转参数的传递解决方案
在JQueryMobile开发手机端应用使用可能需要考虑相关的页面跳转带来的参数问题。因为JQueryMobile其实也是HTML5实践的结果。HTML5中有localStorage和sessionStorage使用。最好采用Storage实现比较简单易用。例如在页面A跳转B页面,在A跳转...
分类:Web程序   时间:2014-07-12 13:33:42    阅读次数:279
Windows Azure HandBook (2) Azure China提供的服务
《Windows Azure Platform 系列文章目录》 对于传统的自建数据中心,从底层的Network,Storage,Servers,Virtualization,中间层的OS,Middleware,Runtime,最上层的Application,Data,都需要企业进行管理。这就好...
分类:数据库   时间:2014-07-11 19:10:03    阅读次数:485
Cannot lock storage /tmp/hadoop-root/dfs/name. The directory is already locked.
ERROR namenode.NameNode: java.io.IOException: Cannot lock storage /tmp/hadoop-root/dfs/name. The directory is already locked....
分类:其他好文   时间:2014-07-11 00:23:43    阅读次数:362
【已解决】Failed to Initialize Windows Azure Storage Emulator解决方法
错误代码:Failed to Initialize Windows Azure Storage EmulatorAdded reservation for http://127.0.0.1:10000/ in user account Richard-PC\Richard.Added reserva...
分类:Windows程序   时间:2014-07-10 16:55:09    阅读次数:393
数据库接口使用说明
1 阅读对象需要操作mysql数据库的c语言开发人员。2 lstorage功能封装了mysql操作的主要功能,并对其进行了一定简化。3 lstorage框架结构3.1 组件列表组件名称组件类型功能说明libstorage.so动态库storage.h头文件函数声明datastruct.h头文件数据结...
分类:数据库   时间:2014-07-09 22:43:47    阅读次数:247
移动前端开发之数据库操作篇
在移动平台开发中,经常会有大数据存储与交互的操作,在以webkit为内核的浏览器中,提供了一个叫作WEBSQL的数据库。这让我们前端也可以像php等程序语言一样,进行数据库的读写操作。Web Storage存储本地数据的方法目前可以在许多主流浏览器、平台与设备上实现,与之相关的API也已经标准化,但...
分类:移动开发   时间:2014-07-08 22:42:51    阅读次数:242
快速排序之算法导论实现
#include using namespace std; int partition(int *a,int p,int r) { int x=a[r]; int i=p-1;//note i important which is used for //storage the number smaller than flag x=a[r] for (int j=p;j<r;j++...
分类:其他好文   时间:2014-07-08 21:06:59    阅读次数:232
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!