自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

pathfinder

技术永远是工具,人的思维和创造力才是前进的动力!

  • 博客(9)
  • 资源 (11)
  • 收藏
  • 关注

转载 在Linux下安装android开发环境并以USB调试方式链接手机进行开发

<br />机器型号   HTC Tattoo<br />固件版本 android1.6<br />开发宿主系统 MagicLinux2.5(同样适用于其他Linux发行版本)<br />本文为Linux下搭建android开发环境快速指南,并解决了Linux下android手机usb调试设备不能正确识别的问题。<br />首先要配置android SDK开发环境<br />1、下载android1.6 SDK<br />因为我的固件版本为android1.6因此下载sdk1.6<br />h

2010-08-30 19:07:00 1236

原创 android 模拟器 获取gps 值

<br />保证模拟器网络连接正常。<br /><br />权限设置:<br /> <br /> <uses-permission android:name="android.permission.LOCATION" /><br /><uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/><br /> <br />1、eclipse中的Emulator Control可以直接send<br />2、

2010-08-27 18:02:00 874

转载 android之后台线程(UI与线程交互)

本文将讨论android应用程序的线程模型以及如何使用线程来处理耗时较长的操作,而不是在主线程中执行,保证用户界面(UI)的流畅运行。本文还将阐述一些用户界面(UI)中与线程交互的API。UI用户界面线程当应用程序启动时,系统会为应用程序创建一个主线程(main)或者叫UI线程,它负责分发事件到不同的组件,包括绘画事件。完成你的应用程序与android UI组件交互。例如,当您触摸屏幕上的一个按钮时,UI线程会把触摸事件分发到组件上,更改状态并加入事件队列,UI线程会分发请求和通知到各个组

2010-08-25 18:35:00 882

转载 Android应用程式编译成系统程序

<br />Android应用程式编译成系统程序简介<br /> <br />简介:在android操作系统中,有一些应用程序,如打电话,系统设置、闹钟等等在我们购买手机的时候就已经有了,如果我们想写一个应用程序到系统中,而又不给用户删除。该如何做?本文将提供一个简单的例子,看看android系统里是如何把应用程序写入系统中去的。<br /> <br />1、开发环境<br />     操作系统:Ubuntu xx<br />     开发工具:Eclipse<br />     Android SDK:

2010-08-25 18:04:00 643

转载 Android,UI主线程与子线程

在一个Android 程序开始运行的时候,会单独启动一个Process。默认的情况下,所有这个程序中的Activity或者Service(Service和 Activity只是Android提供的Components中的两种,除此之外还有Content Provider和Broadcast Receiver)都会跑在这个Process。 一个Android 程序默认情况下也只有一个Process,但一个Process下却可以有许多个Thread。 在这么多Th

2010-08-24 18:34:00 516

原创 android 比较符合android构架,优雅的定义全局变量

<br />android.app.Application<br /> <br />api 是这样描述的。<br /> <br />Base class for those who need to maintain global application state. You can provide your own implementation by specifying its name in your AndroidManifest.xml's <application> tag, which

2010-08-24 18:28:00 816

转载 bitmap 与drawable的转换

<br /> android在处理一写图片资源的时候,会进行一些类型的转换,现在有空整理一下: <br /> <br />1、Drawable → Bitmap<br /><br />public static Bitmap drawableToBitmap(Drawable drawable) {   <br />           <br />        Bitmap bitmap = Bitmap   <br />                        .createBitmap(

2010-08-20 19:33:00 793

转载 Android--将数据保存到SDCard中

<br /> 使用Activity的openFileOutput()方法保存文件,文件是存放在手机空间上,一般手机的存储空间不是很大,存放些小文件还行,如果要存放像视频这样的大文件,是不可行的。对于像视频这样的大文件,我们可以把它存放在SDCard。 SDCard是干什么的?你可以把它看作是移动硬盘或U盘。<br /><br /> 在模拟器中使用SDCard,你需要先创建一张SDCard卡(当然不是真的SDCard,只是镜像文件)。创建SDCard可以在Eclipse创建模拟器时随同创建

2010-08-04 11:39:00 1013

转载 手机屏幕分辨率规格尺寸全解析

常用的手机屏幕采用的是同笔记本一样的液晶屏,液晶屏幕的分辨率都是固定的,每一个点就是一个像素。而且手机分辨率并不是指屏幕大小,而且也可以说和屏幕本身的大小没有关系。比方说,2.1英寸液晶显示屏幕可以显示240×320分辨率的图象,就叫 做“QVGA 2.1英寸液晶显示屏”;3.8英寸液晶显示屏幕可以显示240×320的图象,就叫做“QVGA 3.8英寸液晶显示屏”。   当下的手机屏幕分辨率规格大致分为QVGA、HVGA、VGA、WVGA四种,因此许多应用软件也 相继推出了各个分

2010-08-02 10:13:00 4002

ogre 程序设计文档chm

ogre 程序设计 chm 格式 很全的入门中文文档

2011-12-21

hibernate入门教程

hibernate 官方入门教程 这个教程覆盖了关于开发一个简单的 Hibernate 应用程序的几个基础方面。

2011-12-01

Android A Programmer's Guide(Android程序员向导) 英文版

英文原版 Android A Programmer's Guide 共十二章,系统的介绍了Android手机开发步骤和相关知识,另外也是学习英语的好资料! 1 What Is Android? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Brief History of Embedded Device Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Open Handset Alliance and Android . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Introduction to Android . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 2 Downloading and Installing Eclipse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 Why Eclipse? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Downloading and Installing the JRE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 Downloading and Installing Eclipse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3 Downloading and Installing the Android SDK . . . . . . . . . . . . . . . . . . . . . . . 21 Downloading the Android SDK . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 Downloading and Installing the Android Plugin for Eclipse . . . . . . . . . . . . . . . . . . . . . . 24 Configuring the Android Plugin for Eclipse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 4 Exploring the Android SDK . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 What Is in the Android SDK? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 Android Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 Android Samples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 Try This: Run the API Demos Sample Application . . . . . . . . . . . . . . . . . . . . . . . . . 41 Android Tools . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 APIs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 Application Life Cycle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 Standard ASP Application Life Cycle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 Android Application Life Cycle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 5 Application: Hello World! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 Creating Your First Android Project in Eclipse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 Examining the Android-Created Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 AndroidManifest.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62 Referenced Libraries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62 Directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 Hello World! Again . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 Hello World! Using an Image . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72 Hello World! Code-Based UI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 Hello World! XML-Based UI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 Try This: Use TextView and ImageView . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 6 Using the Command-Line Tools and the Android Emulator . . . . . . . . . . . . 83 Creating a Shell Activity Using the Windows CLI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 Running the ActivityCreator.bat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 The Project Structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 Creating the Hello World! Activity in the Windows CLI . . . . . . . . . . . . . . . . . . . . . . . . 95 Editing the Project Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 Adding the JAVA_HOME Variable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 Compiling and Installing the Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 Hello World! on Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 Configuring the PATH Statement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 Try This: Create an Image-Based Hello World! in the CLI . . . . . . . . . . . . . . . . . . . 115 7 Using Intents and the Phone Dialer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117 What Are Intents? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 Using the Dialer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124 Placing a Call from Your Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128 Adding the Intent to Your Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129 Editing Activity Permissions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131 Modifying the AndroidPhoneDialer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136 Adding a Button . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136 Implementing an EditText View . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141 Try This: Modify the AndroidPhoneDialer Project . . . . . . . . . . . . . . . . . . . . . . . . . . 145 8 Lists, Menus, and Other Views . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149 Building the Activities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 Intent Code for the .xml File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152 Intent Code for the .java File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 Modifying the AndroidManifest.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 Using the Menu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 Creating the Activity for AutoComplete . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163 Button . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 CheckBox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 178 EditText . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 RadioGroup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189 Spinner . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 195 Try This: Modify More View Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 202 9 Using the Cell Phone’s GPS Functionality . . . . . . . . . . . . . . . . . . . . . . . . . . . 203 Using the Android Location-Based API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204 Creating a kml File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 205 What Is a track File? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 Getting the nmea File in Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 Getting the nmea File in Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 210 Reading the GPS with the Android Location-Based API . . . . . . . . . . . . . . . . . . . . . . . . 212 Creating the AndroidLBS Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212 Passing Coordinates to Google Maps . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 222 Adding Zoom Controls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 226 Try This: Toggling Between MapView’s Standard and Satellite Views . . . . . . . . . . 232 10 Using the Google API with GTalk . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 239 Configuring the Android Emulator for GTalk . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 241 Implementing GTalk in Android . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 244 Creating the Activity’s Layout in the GoogleAPI.xml . . . . . . . . . . . . . . . . . . . . . 245 Adding Packages to GoogleAPI.java . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 247 Implementing the View.OnClickListener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 248 Compiling and Running GoogleAPI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 252 Try This: Add a Settings Feature to Your GoogleAPI Activity . . . . . . . . . . . . . . . . 255 11 Application: Find a Friend . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 257 Creating a SQLite Database . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 259 Creating a Custom Content Provider . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 Editing the strings.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 Creating Your Content Provider . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 265 Creating the FindAFriend Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 276 Editing AndroidManifest.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 276 Creating the NameEditor Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 278 Creating the LocationEditor Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 283 Creating the FriendsMap Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 293 Creating the FindAFriend Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 299 Running the FindAFriend Activity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 302 Try This: Real-Time Location Updating . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 305 12 Android SDK Tool Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 307 Android Emulator Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 308 Android Debug Bridge Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 310 Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 313

2010-06-27

spring3.x 权威开发指南中文版

目录如下: 序 .............................. VII 前言 ...............................IX 1 借助Spring 3.0实施Java EE 6 1.1 Java EE 6 编程模型讨论 1.1.1 Java EE 6够敏捷,No! 1.1.2 盘旋于具体与抽象之间 1.2 挖掘 Spring 3.0的架构价值 1.2.1 精耕细作于Java EE 6平台 1.2.2 面向Spring的 SpringSource Tool Suite集成开发工具 1.2.3 全面拥抱OSGi 4.2 1.2.4 开发者决定一切 1.3 下载及构建Spring 3.0 1.3.1 下载Spring 3.0正式发布版 1.3.2 基于SVN库持续构建Spring源码 1.4 小结 2 控制反转容器 2.1 DI及Spring DI概述 2.1.1 面向Java ME/Java SE的BeanFactory 2.1.2 面向Java EE的ApplicationContext 2.2 多种依赖注入方式 2.2.1 设值注入 2.2.2 构建器注入 2.2.3 属性注入 2.2.4 方法注入 2.3 候选的Autowiring策略 III 2.4 基于注解(Annotation)方式配置DI容器 2.5 资源操控 2.6 Spring表达式语言(SpEL)支持 2.7 将DI容器宿主到Web容器中 2.8 外在化配置应用参数 2.9 Spring受管 Bean的作用范围 2.10 Bean Validation集成支持 2.11 回调接口集合及触发顺序 2.12 <util/> 命名空间 . 2.13 值得重视的若干DI特性 2.13.1 depends-on特性 2.13.2 别名(Alias) 2.13.3 工厂Bean和工厂方法 2.13.4 <p/>命名空间 2.13.5 抽象和子Bean 2.14 小结 6 3 面向切面编程 3.1 AOP及Spring AOP基础 3.1.1 细说AOP 3.1.2 Spring AOP基础概念 3.2 AspectJ 6 初探 3.3 老式Spring AOP 3.4 基于@AspectJ的Spring AOP 3.5 基于<aop:config/>元素的AOP 3.5.1 巧用<aop:include/>元素 3.6 在 AspectJ 6应用中启用@Configurable注解 3.6.1 显式使用 AnnotationBeanConfigurerAspect切面 3.6.2 阐述@Configurable注解 3.6.3 通过META-INF/aop.xml(或aop-ajc.xml)控制启用的切面集合 ....... 22 IV 3.6.4 <context:spring- configured/>元素 3.6.5 初探<context:load-time-weaver/>元素 3.7 小结 4 DAO层集成支持 4.1 RDBMS持久化操作抽象支持 4.2 JDBC集成支持 4.2.1 JDBC最佳实践 4.3 事务集成支持 4.4 集成测试支持 4.5 在AspectJ 6应用中启用@Transactional注解 . 4.6 小结 5 Hibernate、JPA集成 5.1 Hibernate集成支持 5.2 JPA集成支持 5.3 智能处理Java EE容器中的装载期织入(LTW) 5.4 小结 6 O/X Mapping集成支持 6.1 O/X Mapping 集成支持 6.1.1 Marshaller及Unmarshaller接口 6.2 实践XMLBeans集成支持 6.2.1 借助Ant生成XMLBeans JAR 6.2.2 XmlBeansMarshaller实现类 6.2.3 <oxm:xmlbeans- marshaller/>元素 6.3 小结 . 7 集成Java EE其他容器服务 7.1 简化JNDI操作 7.2 集成EJB 3.1 7.3 线程池及任务调度集成支持 7.4 集成JMS 7.5 集成JavaMail 7.6 集成分布式操作 7.7 集成JMX 7.8 集成Java EE连接器架构 7.9 小结 8 Web层集成支持 8.1 Spring Web MVC 框架 8.2 Spring Portlet MVC框架 8.3 REST架构风格 8.4 小结 9 高级 Spring 3.0特性 9.1 优雅销毁DI容器 9.2 小结 10 附录A:安装及使用 SpringSource Tool Suite 10.1 获得SpringSource Tool Suite 10.2 安装 SpringSource Tool Suite 10.3 使用SpringSource Tool Suite 10.3.1 针对 Spring 3.0的支持 10.3.2 针对Spring Web Flow的支持 10.3.3 针对Spring Batch的支持 10.3.4 针对Spring Roo的支持 11 附录B:Spring 3.0内置的命名空间 . 11.1 <beans/> 命名空间 11.2 <context/>命名空间 11.3 <util/>命名空间 12 附录C:Spring Web Services 12.1 文档驱动的Web服务 12.2 面向OXM的Web服务实现策略 12.3 Web 服务安全 13 附录D:Spring Web Flow 13.1 流程致胜 13.2 探索Spring Web Flow 14 附录E:Spring BlazeDS Integration 14.1 Flex-RIA王者 14.2 简化BlazeDS的使用 14.3 深入到Spring BlazeDS Integration中 15 附录F:Spring Roo 15.1 快速研发之道 15.1.1 Spring Roo概述 15.2 Spring Roo架构哲学 15.3 深入到Spring Roo中 . 16 附录G:相关资料 16.1 图书 16.2 网站

2010-05-24

java算法大全源码包

java算法大全源码包 有近100多种常见算法的源代码,是学习JAVA算法的难得资料。

2009-10-23

PL/SQL 中文版

PL/SQL是一种高性能的基于事务处理的语言,能运行在任何ORACLE环境中,支持所有数据处理命令。通过使用PL/SQL程序单元处理SQL的数据定义和数据控制元素。   . PL/SQL支持所有SQL数据类型和所有SQL函数,同时支持所有ORACLE对象类型   . PL/SQL块可以被命名和存储在ORACLE服务器中,同时也能被其他的PL/SQL程序或SQL命令调用,任何客户/服务器工具都能访问PL/SQL程序,具有很好的可重用性。   . 可以使用ORACLE数据工具管理存储在服务器中的PL/SQL程序的安全性。可以授权或撤销数据库其他用户访问PL/SQL程序的能力。   . PL/SQL代码可以使用任何ASCII文本编辑器编写,所以对任何ORACLE能够运行的操作系统都是非常便利的   . 对于SQL,ORACLE必须在同一时间处理每一条SQL语句,在网络环境下这就意味作每一个独立的调用都必须被oracle服务器处理,这就占用大量的服务器时间,同时导致网络拥挤。而PL/SQL是以整个语句块发给服务器,这就降低了网络拥挤。

2009-08-13

dtree(web 必备)

Javascripts Tree dtree

2009-08-06

struts2标签库

Struts2.0 Tags 大小:1M 语言:中文

2009-05-31

Visual SourceSafe 2005 汉化包

Visual SourceSafe 2005 汉化包

2009-05-22

c#_help(pdf )

c#_help(pdf ) c#_help(pdf ) c#_help(pdf ) c#_help(pdf )

2008-10-06

空空如也

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

TA关注的人

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