
Oracle
文章平均质量分 78
lauraylin
人生就是一出戏,我用代码去勾画她!
展开
-
Oracle函数返回游标,在JAVA中显示结果
SQL代码:create or replace function GetEmpsreturn sys_refcursoris cur sys_refcursor;begin open cur for select * from emp; return cur;end getEmps;JAVA代码: package com.ray;import java.sql.*;public原创 2007-12-27 22:16:00 · 1919 阅读 · 0 评论 -
Oracle中UTL_FILE包的用法
以下翻译来自《Oracle Built-in Packages》的第六章,只翻译了部分,想了解的更详细,请参考原文。http://www.oreilly.com/catalog/oraclebip/chapter/ch06.htmlFOPEN IS_OPEN GET_LINE PUT NEW_LINE PUT_LINE PUTF FFLUSH FCLOSE FCLOSE_ALL UTL_F翻译 2008-01-01 19:53:00 · 1467 阅读 · 0 评论