Cloud computing is a model for enabling ubiquitous,
convenient, on-demand network access to a shared pool of configurable computing
resources (e.g., n...
分类:
其他好文 时间:
2014-05-17 00:47:31
阅读次数:
224
一、名词解释(1)SGA:System Global Area是Oracle
Instance的基本组成部分,在实例启动时分配;系统全局域SGA主要由三部分构成:共享池、数据缓冲区、日志缓冲区。(2)共享池:Shared
Pool用于缓存最近被执行的SQL语句和最近被使用的数据定义,主要包括:Lib...
分类:
数据库 时间:
2014-05-16 19:43:23
阅读次数:
447
运行android程序报错The connection to adb is down, and a
severe error has occured。原因是adb.exe无法运行。在命令行中输入adb.exe kill-serveradb
start-server重启eclipse,即可解决问题。
分类:
数据库 时间:
2014-05-14 02:04:53
阅读次数:
377
LINQ:Language INtegrated
Query,语言集成查询。以下内容演示如何利用LINQ进行增加,修改,删除和查询操作,针对数据库。首先创建Linq
Class。添加数据库信息,直接Add一个Connection,输入服务器和登录ID,测试连接成功。现在可以看到数据库里面的信息了,比...
分类:
其他好文 时间:
2014-05-13 20:46:42
阅读次数:
333
进入SQLPLUS,查询shared_pool,往往看到结果如下:SQL>showparametershared_poolNAMETYPEVALUE-----------------------------------------------------------------------------shared_pool_reserved_sizebiginteger20971520shared_pool_sizebiginteger419430400在Oracle中..
分类:
数据库 时间:
2014-05-13 12:42:30
阅读次数:
447
各种存储过程使用指南
'---开始链接数据库
Dim strConnString
strConnString = "driver={SQL Server};server=songhp;uid=sa;pwd=;database=XVZDemo"
set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open str...
分类:
其他好文 时间:
2014-05-12 23:00:55
阅读次数:
304
package com.ctl.util;
import java.io.IOException;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.Connection;
impo...
分类:
数据库 时间:
2014-05-11 21:04:49
阅读次数:
501
Java
mysql的模版,很优雅。同时也兼顾了性能PreparedStatement和安全性(防SQL注入)两方面。对于比较简单的数据库操作基本满足要求。package
dao;import java.sql.Connection;import java.sql.DriverManager;imp...
分类:
数据库 时间:
2014-05-11 15:51:27
阅读次数:
354
iwangzheng.com16:57 [root@a02.cmsapi]$ mysql
-u-p -h10.103.xx.xxWelcome to the MySQL monitor. Commands end with ; or \g.Your
MySQL connection id is 57...
分类:
数据库 时间:
2014-05-10 20:57:56
阅读次数:
441
set conn=server.CreateObject("adodb.connection")
set rs=server.CreateObject("adodb.recordset")
cnpath="data source=" & server.MapPath("question.mdb")
conn.open "provider=microsoft.jet.oledb.4.0;...
分类:
其他好文 时间:
2014-05-10 04:59:38
阅读次数:
304