分享
 
 
 

ORACLE中表,视图名变大写和BLOB操作的问题

王朝oracle·作者佚名  2006-06-06
窄屏简体版  字體: |||超大  

1. 表,视图创建后名字全部变成大写

通过JDBC中的DatabaseMetaData.getTables函数可以来查询当前数据库的MetaData,既可以查询一些数据表和视图等很多信息。但是,ORACLE在当你创建完成,名字全部变成了大写,如果在getTables中,参数名字输入的是小写,那么将查询不到该表或者该视图。

其实,getTables函数也是通过SQL语句来查询一个叫做all_objects的表。

SELECT NULL AS table_cat,

o.owner AS table_schem,

o.object_name AS table_name,

o.object_type AS table_type,

NULL AS remarks

FROM all_objects o

WHERE o.owner LIKE ? ESCAPE '/'

AND o.object_name LIKE ? ESCAPE '/'

AND o.object_type IN ('xxx', 'VIEW')

ORDER BY table_type, table_schem, table_name

2。关于BLOB数据类型的存取:

ORACLE的新版本,其中BLOB的存取一直是个比较麻烦的事情,似乎它不兼容JDBC的标准。我在MYSQL下创建,查询的BLOB字段的SQL,在ORACLE上要出现一些问题:比如getBytes(),setBytes()要出现问题等等。

网上讨论这个的还是比较多的,最简单的办法就是把BLOB改成LONG RAW,虽然LONG RAW最大存储容量是2GB,而BLOB是4GB,但是其实大多数情况都够了。

如果非要使用BLOB,我这里从网上找到了一些贴子和代码:

http://community.csdn.net/Expert/FAQ/FAQ_Index.asp?id=197116

http://www.zhuoda.org/hofman/22956.html

package demo;

import java.sql.*;

import java.io.*;

import java.sql.PreparedStatement;

import java.util.*;

import oracle.jdbc.driver.*;

import oracle.sql.BLOB;

/**

* Insert record in the MEDIA table

* MEDIA (file_name varchar2(256), file_content BLOB);

*/

public class BlobOracle

{

private final static String hostname = "localhost";

private final static String port = "1521";

private final static String sid = "ORCL";

private final static String username = "scott";

private final static String password = "tiger";

private static String fileLocation;

private static Connection connection;

public BlobOracle()

{

}

/**

*

* @param args

*/

public static void main(String[] args)

{

try

{

if (args.length == 0)

{

System.out.println("\n\n Usage demo.BlobOracle ");

System.exit(0);

}

fileLocation = args[0];

setConnection();

insertBLOB();

} catch (Exception ex)

{

ex.printStackTrace();

} finally

{

}

}

private static void setConnection() throws SQLException

{

DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());

connection = DriverManager.getConnection("jdbc:oracle:thin:@"+hostname+ ":"+ port +":"+ sid , username , password);

connection.setAutoCommit(false); // we must control the commit

}

private static void insertBLOB() throws SQLException, Exception

{

BLOB blob;

File file ;

FileInputStream is;

OutputStream os;

long ts1 = System.currentTimeMillis();

//Create a statement.

PreparedStatement pstmt = connection.prepareStatement("insert into media (file_name, file_content) values (?,empty_blob())");

file = new File(fileLocation);

String fileName = file.getName();

//Set the file name and execute the query

pstmt.setString(1, fileName);

pstmt.execute();

//Take back the record for update (we will insert the blob)

//supposely the file name is the PK

pstmt = connection.prepareStatement("select file_content from media where file_name = ? for update");

pstmt.setString(1, fileName);

//Execute the query, and we must have one record so take it

ResultSet rset = pstmt.executeQuery();

rset.next();

//Use the OracleDriver resultset, we take the blob locator

blob = ((OracleResultSet)rset).getBLOB("file_content");

is = new FileInputStream(file); //Create a stream from the file

// JDBC 2.0

//os = blob.getBinaryOutputStream(); //get the output stream from the Blob to insert it

// JDBC 3.0

os = blob.setBinaryStream(0); //get the output stream from the Blob to insert it

//Read the file by chuncks and insert them in the Blob. The chunk size come from the blob

byte[] chunk = new byte[blob.getChunkSize()];

int i=-1;

System.out.println("Inserting the Blob");

while((i = is.read(chunk))!=-1)

{

os.write(chunk,0,i); //Write the chunk

System.out.print('.'); // print progression

}

// When done close the streams

is.close();

os.close();

//Close the statement and commit

pstmt.close();

long ts2 = System.currentTimeMillis();

connection.commit();

connection.close();

System.out.println("\n"+ (ts2 - ts1) +" ms" );

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有