<<上篇 | 首页 | 下篇>>

Oracle 绑定变量的用法

1.让Oracle自己绑定变量
set serverout on;
set timing on;
declare
l_sql varchar2(2000);
l_count number;
l_param1 varchar2(100);
l_param2 varchar2(100);
begin
l_param1:=’a';
l_param2:=’b';
select count(*) into l_count from table1 where col_1=l_param1 and col_2=l_param2;
dbms_output.put_line(l_count);
end;
/
在上面的情况,Oracle会自己绑定变量,即,如果参数保存在一个数组中,select语句放在一个循环中,
select 语句只会编译一次。
像这样
for i in 1..3
loop
select count(*) into l_count from table1 where col_1=l_param1 and col_2=l_param2 and col_3=i;
dbms_output.put_line(l_count);
end loop

2.不绑定变量
set serverout on;
set timing on;
declare
l_sql varchar2(2000);
l_count number;
l_param1 varchar2(100);
l_param2 varchar2(100);
begin
l_param1:=’a';
l_param2:=’b';
l_sql:=’select count(*) into :x from table1 where col_1=’||l_param1||’ and col_2=’||l_param2;
Execute Immediate l_sql into l_count;
dbms_output.put_line(l_count);
end;
/
3.动态绑定变量
set serverout on;
set timing on;
declare
l_sql varchar2(2000);
l_count number;
l_param1 varchar2(100);
l_param2 varchar2(100);
begin
l_param1:=’a';
l_param2:=’b';
l_sql:=’select count(*) into :x from table1 where col_1=:y and col_2=:z ’;
Execute Immediate l_sql into l_count using l_param1,l_param2;
dbms_output.put_line(l_count);
end;
/

:x,:y,:z相当于占位符,即
1.用:p1,:p2,:p3是一样的。
2.用:x,:x,:x也是一样的
需要的绑定变量按顺序排在执行语句后面就可以了,into的除外。
不过还是用p1,p2好些,至少可以看出绑定了多少个变量。

标签 :

几款前端开源flash报表比较

1. YUI(Ext)-chart 
其实Ext的chart组件来自于YUI2的chart组件,不过就是Ext做了一点自己的封装罢了,从它们的官网的示例和API你就会看出他们出奇的相似,话说YUI的chart组件也是基于另外一个开源项目。 
优点:纯JS配置,事件定义多,可以方便的与其它组件交互 
缺点:图表种类少(没有AreaChart导致我只能放弃)、配置不方便 

2. dv-charts 
一款使用xml进行配置的的chart组件,适合于需求简单的项目 
优点:简单易用、API很清晰 
缺点:没有明确提供JS接口,中文支持不好 

3. openflashchart2 
据说是一个人开发的,采用json进行配置,如果你喜欢用服务器语言去配置还是很方便的,它也提供一些JS接口来实现修改样式以及加载数据 
优点:动画效果做的不错、图标种类很齐全 
缺点:API比较混乱、某些组件有bug(譬如无法设置areaCheat的tooltip来显示横轴坐标) 

4. FusionCharts Free 
这里说的不是FusionCharts v3,区别就是Free版本是开源的,而且许多功能受限制。Free版本提供了js(通过拼写xml字符串)和xml文件两种方式对chart进行配置 
优点:种类齐全、容易配置、文档很详细 
缺点:API(官方的包里面就一堆例子)、加载慢(数据量大的话)、动画效果很土 

5. amChart 
号称最强大的chart组件,官方甚至提供了在线配置工具,支持可见即所得的方式对图表进行配置并导出 
优点:功能强大、API齐全、支持csv、xml数据格式、易于使用的js接口 
缺点:免费用的话左上角有个广告

标签 :

dwr实现Reverse Ajax推送技术的三种方式

DWR2.x的推技术也叫DWR Reverse Ajax(逆向Ajax)主要是在BS架构中,从服务器端向多个浏览器主动推数据的一种技术。

 

在DWR所开的线程中使用Reverse Ajax时,通过WebContextFactory.get()获取WebContext对象,进而获取脚本Session。


在DWR之外使用Reverse Ajax时,就要用到ServerContext,在Spring环境中要得到ServerContext,就需要用到Spring的ServletContextAware接口。

 

一、Reverse Ajax的实现有3种方式:

      DWR的逆向Ajax主要包括两种模式:主动模式和被动模式。其中主动模式包括polling和comet两种,被动模式只有piggyback这一种。

 

     1、piggyback方式

           这是默认的方式。

           如果后台有什么内容需要推送到前台,是要等到那个页面进行下一次ajax请求的时候,将需要推送的内容附加在该次请求之后,传回到页面。
           只有等到下次请求页面主动发起了,中间的变化内容才传递回页面。

 

      2、comet方式

           当服务端建立和浏览器的连接,将页面内容发送到浏览器之后,对应的连接并不关闭,只是暂时挂起。如果后面有什么新的内容需要推送到客户端的时候直接通过前面挂起的连接再次传送数据。

           服务器所能提供的连接数目是一定的,在大量的挂起的连接没有关闭的情况下,可能造成新的连接请求不能接入,从而影响到服务质量。

 

      3、polling方式

           由浏览器定时向服务端发送ajax请求,询问后台是否有什么内容需要推送,有的话就会由服务端返回推送内容。这种方式和我们直接在页面通过定时器发送ajax请求,然后查询后台是否有变化内容的实现是类似的。只不过用了dwr之后这部分工作由框架帮我们完成了。

 

 

二、使用DWR的推技术的步骤

     1、在web.xml文件中增加以下配置信息

<servlet>
	<servlet-name>dwr-invoker</servlet-name>
	<servlet-class>uk.ltd.getahead.dwr.DWRServlet</servlet-class>
	<init-param>
		<param-name>debug</param-name>
		<param-value>true</param-value>
	</init-param>
	
	<!-- DWR默认采用piggyback方式 -->
	
	<!-- 使用polling和comet的方式 -->
	<init-param>
		<param-name>pollAndCometEnabled</param-name>
		<param-value>true</param-value>
	</init-param>
	
	<!-- comet方式 -->
	<!-- 
	<init-param>
		<param-name>activeReverseAjaxEnabled</param-name>
		<param-value>true</param-value>
	</init-param>
	 -->
	 
	<!-- polling方式:在comet方式的基础之上,再配置以下参数 -->
	<!-- 
	<init-param>
		<param-name>org.directwebremoting.extend.ServerLoadMonitor</param-name>
		<param-value>org.directwebremoting.impl.PollingServerLoadMonitor</param-value>
	</init-param>
	 -->
	  
	<!-- 毫秒数。页面默认的请求间隔时间是5秒 -->
	<!-- 
	<init-param>
		<param-name>disconnectedTime</param-name>
		<param-value>60000</param-value> 
	</init-param>
	 -->
	 
	<load-on-startup>1</load-on-startup>      
</servlet>

<servlet-mapping>
	<servlet-name>dwr-invoker</servlet-name>
	<url-pattern>/dwr/*</url-pattern>
</servlet-mapping>

 

    2、在dwr.xml中增加以下配置信息

<create creator="new" javascript="DWRHelper">
	<param name="class" value="com.cjm.web.dwr.DWRHelper"/>
	<include method="addMessage"/>
	<include method="test"/>
</create>

<convert converter="bean" match="com.cjm.web.dwr.Message">
	<param name="include" value="id,text"/>
</convert>

 

    3、pojo类Message的源码

public class Message {
	private long id = System.currentTimeMillis();
	private String text;
	
	public Message(){
		
	}
	
	public Message(String newText){
		text = newText;
	}
	
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	public String getText() {
		return text;
	}
	public void setText(String text) {
		this.text = text;
	}
}

 

     4、DWRHelper类源码

public class DWRHelper {
	private static LinkedList<Message> messages = new LinkedList<Message>();
	private static ReentrantLock lock = new ReentrantLock(); //JDK5锁
	
	public void addMessage(String text){
		try{
			lock.lock();
			
			if(text!=null && text.trim().length()>0){
				messages.addFirst(new Message(text));
				if(messages.size()>10){
					messages.removeLast();
				}
			}
		}catch(Exception ex){
			ex.printStackTrace();
		}finally{
			lock.unlock();
		}
		
		//获得DWR上下文
		WebContext webContext = WebContextFactory.get();
		
		//获取当前页面URL,比如/ext3/test_tag.jsp
		String currentPage = webContext.getCurrentPage();
		
		//当前脚本sessin
		ScriptSession scriptSession = webContext.getScriptSession();
		
		//设置页面控件的值
		Util util = new Util(scriptSession);
		util.setValue("text", ""); //这里是清空页面输入框的值
		
		//设置脚本sessin的属性值
		scriptSession.setAttribute("uid", "cjm");
		
		//获取脚本session的属性值
		for(Iterator it=scriptSession.getAttributeNames();it.hasNext();){
			String attrName = (String)it.next();
			System.out.println(attrName + "=" + scriptSession.getAttribute(attrName));
		}
		
		//获取所有浏览当前页面的脚本session
		Collection<ScriptSession> sessions = webContext.getScriptSessionsByPage(currentPage);
		
		Util utilAll = new Util(sessions);
		
		//执行客户端脚本
		ScriptBuffer script = new ScriptBuffer();
		script.appendScript("clientFunction(")
		  .appendData(scriptSession.getAttribute("uid"))
		  .appendScript(");");
		
		for(ScriptSession session: sessions){
			session.addScript(script);
		}
		
		//更新这些脚本session的一些元素
		utilAll.removeAllOptions("messages");
		utilAll.addOptions("messages", messages, "id", "text");
	}
}

 

    5、JSP页面源码

<%@ page language="java" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
	<script type='text/javascript' src='/ext3/dwr/engine.js'></script>
	<script type='text/javascript' src='/ext3/dwr/util.js'></script>
	<script type='text/javascript' src='/ext3/dwr/interface/DWRHelper.js'></script>
  </head>
  
  <!-- 通过 dwr.engine.setActiveReverseAjax(true); 启动该页面的Reverse Ajax功能  -->
  <body onload="dwr.engine.setActiveReverseAjax(true);sendMessage();">
  	<p>输入信息: <input id="text" onkeypress="dwr.util.onReturn(event, sendMessage)" /> 
	<input type="button" value="Send" onclick="sendMessage()" /></p>

	<script type="text/javascript">
    	function sendMessage() {
      		DWRHelper.addMessage(dwr.util.getValue("text"));
    	}
	</script>
	
	<hr/>
	<select id="messages"></select>
  	
  </body>
</html>
标签 : , ,