自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (13)
  • 收藏
  • 关注

转载 从 Java 应用程序动态生成 PDF 文件

原文地址:http://www.ibm.com/developerworks/cn/opensource/os-javapdf/由浅入深地讲解 iText 这种使得创建 PDF 更加容易的开放源码库Amit Tuli ([email protected]), 资深软件工程师, EM

2011-07-22 22:56:51 723

原创 JavaScript学习总结

JavaScript函数1、定义函数function的四种方式。function add(a,b){ return a+b;};var add=function(a,b){ return a+b;};var add=function test(a

2011-07-16 17:55:18 1078

转载 持续集成

标题  持续集成     选择自 moonet 的 Blog 关键字  代码规范出处   Martin Fowler & Matthew Foemmel著 透明 译 英文原文版权由Martin Fowler拥有  Original text is copyrighted by Martin Fowl

2010-02-28 01:32:00 441

原创 ORACLE数据库对象——同义词、序列、视图

ORACLE数据库对象——同义词、序列、视图同义词:同义词是现有对象的别名简化SQL语句隐藏对象的名称和所有者提供对对象的公共访问 同义词分为私有同义词和公有同义词私有同义词只能在其模式内访问,且不能与当前模式的对象同名。公有同义词可被所有的数据库用户访问。 以 SYS 用户登录SQL> CONNECT SYS/SYS AS SYSDBA;Con

2010-02-13 21:52:00 1093

原创 ORACLE触发器

触发器 q      触发器是当特定事件出现时自动执行的存储过程q      特定事件可以是执行更新的DML语句和DDL语句q      触发器不能被显式调用q      触发器的功能:q      自动生成数据q      自定义复杂的安全权限q      提供审计和日志记录q      启用复杂的业务逻辑 创建触发器的语法:CREATE [OR

2010-02-13 21:43:00 1284

原创 ORACLE导出和导入实用程序

导出和导入实用程序 q      导出和导入实用程序用于实施数据库的逻辑备份和恢复q      导出实用程序将数据库中的对象定义和数据备份到一个操作系统二进制文件中q      导入实用程序读取二进制导出文件并将对象和数据载入数据库中q       q      导出和导入实用程序的特点有:q      可以按时间保存表结构和数据q      允许导出指定的表,并重

2010-02-13 09:56:00 894

原创 ORACLE过程、函数

过程、函数   create or replace procedure p1is  empname emp.ename%type;begin  select ename into empname from emp where empno=7788;  dbms_output.put_line(empname);end; SQL> ed

2010-02-13 01:26:00 460

原创 ORACLE程序包

程序包 包主体/规范名字一样包主体/规范中的对应参数必须类型及名字一样只能使用强类型的REF游标 创建程序包规范create or replace package my_packis       procedure find_emp_proc(eno emp.empno%type);       function find_emp_fun(e

2010-02-12 23:47:00 3939

原创 ORACLE游标

ORACLE游标游标:容器,存放当前SQL语句影响的记录       所有DML语句都会用到游标              逐行处理影响的行数 游标       静态游标:游标与SQL语句在运行前关联       动态游标:游标与SQL语句在运行时关联游标       隐式游标:自动声明、打开、关闭,其名SQL       显式游标:       R

2010-02-12 22:49:00 707

原创 PL/SQL

PL/SQL 简介q      PL/SQL 是过程语言(Procedural Language)与结构化查询语言(SQL)结合而成的编程语言q      PL/SQL 是对 SQL 的扩展q      支持多种数据类型,如大对象和集合类型,可使用条件和循环等控制结构q      可用于创建存储过程、触发器和程序包,给SQL语句的执行添加程序逻辑q      与 Ora

2010-02-12 21:34:00 808

原创 ORACLE 数据库对象

ORACLE 数据库对象——索引 q      索引是与表相关的一个可选结构q      用以提高 SQL 语句执行的性能q      减少磁盘I/Oq      使用 CREATE INDEX 语句创建索引q      在逻辑上和物理上都独立于表的数据q      Oracle 自动维护索引 索引的目标:提高查询性能 索引对增删改查的影响

2010-02-12 21:03:00 381

原创 DISTINCT+COUNT对重复值和空值的处理

以ORACLE数据库 scott用户的emp 表为例 原始数据如下:SQL> select * from emp; EMPNO ENAME      JOB         MGR HIREDATE          SAL      COMM DEPTNO----- ---------- --------- ----- ----------- --------- ----

2010-02-12 20:43:00 8810

原创 ORACLE体系结构

一、             内存结构共享池:分为库高速缓存和字典高速缓冲区库高速缓存,用于存储经过语法分析并且正确的SQL语句,并随时准备执行。字典高速缓冲区,存储登陆到ORACLE的用户名,及这些用户有哪些数据库对象以及这些数据库对象的位置。数据缓冲区:数据高速缓冲区包含三个类型的区域keep缓冲池、recycle缓冲池、 default缓冲池       

2010-02-12 20:12:00 420

JAVA反编译ECLIPSE插件

无意中得到的,可直接打开class文件,在Eclipse中不用导入源码包就可看到源码,用起来很方便。

2011-07-28

DOM-Scripting.pdf

This book deals with a programming language, but it isn’t intended for programmers. This is a book for web designers. Specifically, this book is intended for standards-aware designers who are comfortable using CSS and XHTML. If that sounds like you, read on...

2011-07-28

动态生成 PDF 文件例子

动态生成 PDF 文档,则需要 iText 库。开放源码的 iText 库使 PDF 文档的创建能够在瞬间完成

2011-07-23

从Java 应用程序动态生成 PDF 文件 .

需要动态生成 PDF 文档,则需要 iText 库。开放源码的 iText 库使 PDF 文档的创建能够在瞬间完成。

2011-07-23

DOM Scripting_Second Edition.pdf

This book deals with a programming language, but it isn’t intended for programmers. This is a book for web designers. Specifically, this book is intended for standards-aware designers who are comfortable using CSS and HTML. If that sounds like you, read on.

2011-07-22

Java就业面试题大全

Java就业面试题大全 面向对象的特征有哪些 Overload 和Override的区别 abstract class和interface有什么区别? error和exception有什么区别?

2010-11-26

持续集成工具CruiseControl.part4

CruiseControl is both a continuous integration tool and an extensible framework for creating a custom continuous build process. It includes dozens of plugins for a variety of source controls, build technologies, and notifications schemes including email and instant messaging. A web interface provides details of the current and previous builds. And the standard CruiseControl distribution is augmented through a rich selection of 3rd Party Tools.

2010-03-01

持续集成工具CruiseControl.part3

CruiseControl is both a continuous integration tool and an extensible framework for creating a custom continuous build process. It includes dozens of plugins for a variety of source controls, build technologies, and notifications schemes including email and instant messaging. A web interface provides details of the current and previous builds. And the standard CruiseControl distribution is augmented through a rich selection of 3rd Party Tools.

2010-02-28

持续集成工具CruiseControl.part2

CruiseControl is both a continuous integration tool and an extensible framework for creating a custom continuous build process. It includes dozens of plugins for a variety of source controls, build technologies, and notifications schemes including email and instant messaging. A web interface provides details of the current and previous builds. And the standard CruiseControl distribution is augmented through a rich selection of 3rd Party Tools.

2010-02-28

持续集成工具CruiseControl.part1

CruiseControl is both a continuous integration tool and an extensible framework for creating a custom continuous build process. It includes dozens of plugins for a variety of source controls, build technologies, and notifications schemes including email and instant messaging. A web interface provides details of the current and previous builds. And the standard CruiseControl distribution is augmented through a rich selection of 3rd Party Tools.

2010-02-28

oracle 9i 查询优化

oracle数据库查询优化 本文描述了 Oracle 的查询优化程序,它是数据库的关键组件,能让 Oracle 的用户获得极佳的执行性能。Oracle 的查询优化技术在功能上无与伦比,本文详细讨论了查询优化的所有重要领域。

2008-12-30

SSH集成_查询EMP雇员_src

Struts+Spring+Hibernate 实现查询ORACLE数据库EMP表所有雇员

2008-11-07

Struts、Spring、Hibernate集成

使用Struts、Spring、Hibernate集成技术 实现查询ORACLE数据库中EMP表中的所有雇员

2008-11-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除