码迷,mamicode.com
首页 >  
搜索关键字:thin thick    ( 416个结果
Java操作Oracle
publicclassDBCon{ //数据库驱动对象 publicstaticfinalStringDRIVER="oracle.jdbc.driver.OracleDriver"; //数据库连接地址(数据库名) publicstaticfinalStringURL="jdbc:oracle:thin:@localhost:1521:orcl"; //登陆名 publicstaticfinalStringUSER="scott"; //登陆密..
分类:数据库   时间:2014-07-30 03:28:04    阅读次数:314
graph driver-device mapper-02driver基本操作
// 清除thin pool 1.1 func (d *Driver) Cleanup() error { // 停止thin pool err := d.DeviceSet.Shutdown() return err } // 当加载新镜像时,添加一个新thin device // id为containerid或imageid 1.2 func (d *Driver) Create(i...
分类:移动开发   时间:2014-07-26 02:59:46    阅读次数:302
graph driver-device mapper-03thin pool基本操作
// 在thin pool中创建一个新thin device // 调用路径:driver.Create() 1.1 func (devices *DeviceSet) AddDevice(hash, baseHash string) error { //查找父device baseInfo, err := devices.lookupDevice(baseHash) if err != n...
分类:移动开发   时间:2014-07-26 02:53:26    阅读次数:347
graph driver-device mapper-04libdevmapper基本操作
// 创建thin pool // 调用路径:NewDeviceSet->initDevmapper->createPool 1.1 func createPool(poolName string, dataFile, metadataFile *os.File, poolBlockSize uint32) error { //通过task封装与libdevmapper的交互 task, er...
分类:移动开发   时间:2014-07-26 02:45:06    阅读次数:297
graph driver-device mapper-driver初始化
// thin device数据结构 type DevInfo struct { Hash string `json:"-"` DeviceId int `json:"device_id"` Size uint64 `json:"size"` TransactionId uint64 `json:"tran...
分类:移动开发   时间:2014-07-25 11:02:35    阅读次数:549
读书笔记(2014年7月)
(一)2014-07-24向那些疯狂的家伙们致敬Here's to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes.The ones who see thin...
分类:其他好文   时间:2014-07-25 02:39:44    阅读次数:250
Sqoop从Oracle导出数据出错:The Network Adapter could not establish the connection
Sqoop执行命令:./sqoopimport--connectjdbc:oracle:thin:@10.112.101.251:1621:crmadbmr--usernamebass_etl--password75!n!u6J--tableDBPMSADM.PD_USERSVC_INFO_00-m4--target-dir/ext/ods/PD_USERSVC_INFO_00/2014071906执行日志:crmd3n:/d2_data0/user/ocdc/bin/sqoop-1.4...
分类:数据库   时间:2014-07-21 19:27:52    阅读次数:1653
jdbc各种连接数据库方式
1、Oracle8/8i/9i数据库(thin模式) Class.forName(“oracle.jdbc.driver.OracleDriver”).newInstance(); String url=”jdbc:oracle:thin:@localhost :1521:orcl”; //orcl为数据库的SID String user=”test”;...
分类:数据库   时间:2014-07-21 10:37:04    阅读次数:291
Dictionaries
A dictionary is like a list, but more general. In a list, the indices have to be integers; in a dictionary they can be (almost) any type. You can thin...
分类:其他好文   时间:2014-07-14 23:26:50    阅读次数:329
ThinkPHP应用模式扩展之谜
ThinkPHP应用模式提供了对核心框架进行改造的机会,可以让你的应用适应更多的环境和不同的需求。每个应用模式都有自己的模式定义文件,相对与ThinkPHP3.1版本,ThinkPHP3.2版本对应用模式的扩展更加明确和清晰,在ThinkPHP3.1版本中定义了Cli、Lite、Thin、AMF、PHPRPC、REST模式,其定义方式和ThinkPHP3.2版本的方式大同小异,如有需要可以参考修改...
分类:Web程序   时间:2014-07-08 10:55:31    阅读次数:228
416条   上一页 1 ... 38 39 40 41 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!