P11

  Java 数据库连接 文档

1. Java数据库连接JDBC概述1JDBC工作原理2JDBC编程3数据库连接池4 2. JDBC概述 JDBC(Java Data Base Connectivity) JDBC:Java DataBase

184690173 2013-10-29   534   0
JDBC   Java开发   方案   Java   SQL  
P22

  JDBC数据库应用 文档

1. 数据库应用10/23/2018iSoftStone Technologies Ltd. 2. JDBC和SQL简介JDBC(Java DataBase Connectivity的缩写)是Java

evilgod528 2011-12-07   3781   0
Java开发   Java   SQL  
P26

  nosql数据库应用 文档

1. NOSQL数据库应用案例孟硕培 2. += ?背景介绍 3. 系统构架 4. 数据特征股票 交易 财报 公司 合同 公告 高管 个人信息 增减持数据特点: 属性多 关联性弱 5. 存储方案VS 6

dy3168729 2016-04-24   3351   0
P92

  数据结构常见算法 文档

1. 数据结构算法 2. 数据结构数据结构是一门研究非数值计算的程序设计问题中的操作对象(结点)以及它们之间关系和操作等的学科。 1968 年克努思教授开创了数据结构的最初体系,他所著的《计算机程序设

dreamwhere 2011-10-18   4237   0
方案  
P

Python 数据结构与算法 文档

This book is about the fundamentals of data structures and algorithms--the basic elements from which large and complex software artifacts are built. To develop a solid understanding of a data structure requires three things: First, you must learn how the information is arranged in the memory of the computer. Second, you must become familiar with the algorithms for manipulating the information contained in the data structure. And third, you must understand the performance characteristics of the data structure so that when called upon to select a suitable data structure for a particular application, you are able to make an appropriate decision. <br> This book also illustrates object-oriented design and it promotes the use of common, object-oriented design patterns. The algorithms and data structures in the book are presented in the Python programming language. Virtually all the data structures are presented in the context of a single class hierarchy. This commitment to a single design allows the programs presented in the later chapters to build upon the programs presented in the earlier chapters.

gneg 2015-07-22   251   0
P4

  MySQL常用数据类型 文档

(0,65 535) 整数值 MEDIUMINT 3 字节 (0,16 777 215) 整数值 INT(INTEGER) 4 字节 (0,4 294 967 295) 整数值 BIGINT 8

love100 2011-12-26   662   0
P10

  SAS系统对数据的管理 文档

doc SAS系统和数据分析 电子商务系列 SAS系统对数据的管理 一. SAS数据集 SAS数据集的结构 在SAS系统中只有SAS数据集才能被SAS过程(Procedure)使用。SAS数据集是关系型的,它通常分为两部分:

meiwenbing 2011-11-02   3101   0
P7

  java数据库操作 文档

Java数据库操作 一、JDBC基础 JDBC是Java应用与数据库管理系统进行交互的标准API,包括两个包:核心API---java.sql和扩展的API---javax.sql。应用程序通过核心

hui22129 2014-09-29   512   0

Twitter 数据备份工具 Histwi 经验

Histwi 是一款 Ubuntu 上强劲的 Twitter 数据备份工具,通过它可以批量备份自已的 Tweets 数据,并具备 follower/following 等其它增强功能。 Histwi

fmms 2012-04-02   14859   0

NoSQL数据库:xuncache 经验

xuncache 是免费开源的NOSQL(内存数据库) 采用golang开发,简单易用而且 功能强大(就算新手也完全胜任)、性能卓越能轻松处理海量数据,可用于缓存系统. 目前版本 version 0

jopen 2013-04-08   17470   0

NoSQL 数据建模技术 经验

Techniques ”, 译得不好,还请见谅。这篇文章看完之后,你可能会对NoSQL的数据结构会有些感觉。我的感觉是,关系型数据库想把一致性,完整性,索引,CRUD都干 好,NoSQL只干某一种事,但是牺牲了

jopen 2013-05-15   33442   0

NoSQL数据库 SenseiDB 经验

SenseiDB是一个NoSQL数据库,它专注于高更新率以及复杂半结构化搜索查询。熟悉Lucene和Solor的用户会发现,SenseiDB背后有许多似曾相识的概念。SenseiDB部署在多节点集群中

openkk 2012-06-14   17279   0

数据持久化方案:redisDB 经验

基于redis和mysql的数据持久化方案 redis运行时连接数据库 cache失效时同步读mysql, 数据修改时候通过消息队列通知DB线程写mysql reids.conf增加几个配置选项 mysql_host

jopen 2013-12-17   37881   0
P6

  Android 数据库使用 文档

在Android 中创建和打开一个数据库都可以使用openOrCreateDatabase 方法来实现, // 因为它会自动去检测是否存在这个数据库,如果存在则打开,不过不存在则创建一个数据库; // 创建成功则返回一个

libai 2011-12-12   5163   0
P9

  数据库集群技术 文档

数据库集群技术有哪些? 集群软件的分类: 一般来讲,集群软件根据侧重的方向和试图解决的问题,分为三类:高性能集群(High performance cluster,HPC)、负载均衡集群(Load

johnny_56 2011-08-31   3544   0
P15

  数据库习题(全) 文档

数据库习题 第一章 1. 用户或应用程序看到的那部分局部逻辑结构和特征的描述是(C)模式。 A. 模式 B.物理模式 C.子模式 D.内模式 2. 数据库系统是采用了数据库技术的计算机系统,数据库系

870638530 2017-06-07   21619   0
C#   SQL  
P59

  Mysql数据库精深 文档

欢迎您来访我的个人主页:http://www.open-open.com/home/135360 这篇文档总结了Mysql数据库在开发中用到的所有知识细节,基于mysql-5.5.25a-win32版本。文档内容全面丰富,涵

Yangcl 2013-12-30   3856   0
P11

  大数据方案介绍 文档

典型云计算平台架构 开源成熟的hadoop生态体系 从企业的技术选型角度,hadoop能满足大数据场景下绝打多数需求,同时在技术可行性与成本上,具有无可比拟额优势。 1、 Hadoop是架构在廉价的

guet_lee 2017-01-12   1929   0

学习SQLite数据 经验

SQLite 是一个开源的嵌入式关系数据库,实现自包容、零配置、支持事务的SQL数据库引擎。 其特点是高度便携、使用方便、结构紧凑、高效、可靠。 与其他数据库管理系统不同,SQLite 的安装和运行非常简单,在大多数情况下

jopen 2014-09-30   21350   0

NoSQL 数据库:OlegDB 经验

OlegDB 是一个单线程、非并发、不支持事务的 NoSQL 数据库存储系统。 Written in pure ANSI C, with a server frontend in Go Hard keysize

jopen 2015-01-25   16174   0
1 2 3 4 5 6 7 8 9 10