昨天的问题,终于知道了,是oracle8搞的鬼,懒的再去找什么驱动了。便想起了python
幸好张骏 的帮忙,让我从一知半解到写出代码。
用python的代码明显简洁多了,而且我喜欢代码的灵活。
import cx_Oracle
def parse():
'''generate the content html'''
sql = '''select t.bz_code code, t.bz_title title, t.bz_content content
from bz_czzs t
order by t.bz_code'''
connection = cx_Oracle.connect( 'etasadmin/etasadmin@zhongju' )
cursor = connection.cursor()
cursor.execute(sql)
item=cursor.fetchone()
i=1;
print 'begin'
while item:
i+=1
print 'parsing ',i,' item....'
writeContent(item[0],item[1],str(item[2]))
item=cursor.fetchone()
print 'end'
def writeContent(code,title,content):
filename='D:\\workspace\\style\\test\\content_body.html'
s = getContent(code,title,content)
out = open(filename,'a')
out.write(s)
out.flush()
out.close()
if __name__=='__main__':
print 'parse..................'
parse()
print 'end'
看样子,要好好学习它了。
python 真棒 o_o
注:问题已经解决,oracle8的问题,处理lob需要oci
昨天处理数据的时候,遇到oracle的clob的问题。解决不了,郁闷。
oracle.sql.CLOB clob = (oracle.sql.CLOB) rs.getClob("content");
Reader reader = rs.getCharacterStream("content");
reader.read(c);
System.out.println("content:" + new String(c));
if (null != clob && 0 < clob.length())
System.out.println("content:" +
clob.getSubString((long) 1, (int) clob.length()));
else
System.out.println("nop");
在这下面两处,总是报错。
和
clob.getSubString((long) 1, (int) clob.length())
错误如下:
java.io.IOException: 类型长度大于最大值
at oracle.jdbc.dbaccess.DBError.SQLToIOException(DBError.java:716)
at oracle.jdbc.driver.OracleClobReader.needChars(OracleClobReader.java:222)
at oracle.jdbc.driver.OracleClobReader.read(OracleClobReader.java:163)
at java.io.Reader.read(Reader.java:100)
at com.jxlt.db.parse.Parse.parse(Parse.java:46)
at com.jxlt.db.parse.Parse.main(Parse.java:79)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:86)
google了一下 ,很多人说是驱动的问题,我用了oracle 9自己带的class12&ojdbc14.jar都不行,到oracle站点下了 oralce 10g的驱动,同样也是。
申请了个blog :)thx blogjava!
以前的一篇收藏的文章,放这里来
----------------------------------------------
客户提出的需求是能同时实现
非实时查询
实时查询
没有用过实现两台服务器的连接,google了一下。正好有:)留着
url:http://www.softhouse.com.cn/html/200411/2004113009170200002474.html
如何连接两台Oracle服务器
软件环境:
1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安装路径为:C:\ORANT
3、服务器A、服务器B,均装有NT 4.0中文版
实现方法:
1. 假设A地址192.1.1.1,B地址192.1.1.2
2. A、B上配置好TCP/IP,互相Ping通。
3. 配置init.ora文件,若global_name = true的话,database link 的名字必须同远程机的实例名相同,
为简便起见,请将global_name 设为 false。
4. 在服务器上配置tnsnames.ora,将Remote机器的地址(IP)信息加入本地的tnsnames.ora
A服务器:
TNSA_B =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = 192.1.1.2)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = ORCL)
)
)
B服务器:
TNSB_A =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = 192.1.1.1)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = ORCL)
)
)
5. 在 SQL*Plus 或其它工具中创建数据库链接
A服务器:create public database link A_TO_B connect to tmp identified by tmp using 'TNSA_B';
B服务器:create public database link B_TO_A connect to tmp identified by tmp using 'TNSB_A';
说明:
tmp是一个临时用户,A服务器、B服务器上均有,它的作用是提供链接的目的地,
假如:
B服务器上有user1、user2、tmp三个用户,user1和user2把他们想要对外公开的表的权限授给tmp用户,
那么,所有能通过database link连接到tmp用户上的人就可以直接访问user1、user2上的已授权表了。
6. 建立database link以后,请用这种格式select * from table_name@database_link_name 的方式访问
如:在A服务器上想访问B服务器上user1用户table1表的内容(A到B的连接为A_TO_B),则
SQL> select * from table1@A_TO_B;
7. 如果Oracle版本为7.3,则数据库联接写法如下:
A服务器:create public database link A_TO_B connect to tmp identified by tmp using 't:192.1.1.2:orcl';
B服务器:create public database link B_TO_A connect to tmp identified by tmp using 't:192.1.1.1:orcl';