大对象数据LOB的应用
概述
由于无结构的数据往往都是大型的,存储量特别大,而LOB(large object)类型主要用来支持无结构的大型数据。
用户可以利用LOB数据类型来存储大型的无结构数据,特别是文本,图形,视频和音频等多媒体数据,
系统还提供了随机访问这些LOB数据类型的有效方法。
LOB数据类型可以分为以下几种:
- BLOB:二进制LOB类型,用于存放无结构的二进制数据,最大4GB。
- CLOB:字符LOB类型,用于存放字符数据,最大可以存储4GB。
- NLOB:字符LOB类型,和CLOB相同,支持国家字符集。
- BFILE:二进制文件类型,与数据外的操作系统文件相关联,该文件存储二进制大对象。
- 系统不支持分布式LOB,用户不能在SELECT子句或WHERE子句中使用远程LOB定位器,也不能在DBMS_LOB包的子程序中使用远程定位器
,也不能引用包含LOB属性的远程表中的对象.
- 获取连接 Connection conn=DriverManager.getConnection(URL,USER,PASSWORD);
- 编写SQL语句并发送 PrepapredStatement pstm=conn.prepareStatement(sql);
- 获得数据库返回结果 (ResultSet rs) 增删改(int)
- 关闭资源 public static void closeResource(Connection conn,PreparedStatement pstm,ResultSet rs)
package com.guigu.jdbc; import java.sql.*; public class MySQLConnectionUtil { private static String DRIVER="com.mysql.jdbc.Driver"; private static String URL="jdbc:mysql://127.0.0.1:3306/lob"; private static String USERNAME="root"; private static String PASSWORD="123456"; public static Connection getConnection(){ Connection connection=null; try { Class.forName(DRIVER); connection= DriverManager.getConnection(URL,USERNAME,PASSWORD); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } return connection; } public static void close(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet){ try { if(resultSet!=null){ resultSet.close(); } if (preparedStatement!=null){ preparedStatement.close(); } if (connection!=null){ connection.close(); } } catch (SQLException e) { e.printStackTrace(); } } }
package com.guigu.jdbc; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; public class JDBCMySQLCOLBWriter { public static void main(String[] args) { String sql="INSERT INTO TEXTCLOB VALUES (?,?,?)"; Connection connection=MySQLConnectionUtil.getConnection(); PreparedStatement preparedStatement=null; try { preparedStatement=connection.prepareStatement(sql); File file =new File("D:/workspace/site.txt"); //使用输入流读写文本文件 InputStream inputStream=new FileInputStream(file); //加载SQL语句中VALUES占位符参数 preparedStatement.setInt(1,1); preparedStatement.setString(2,"site.txt"); preparedStatement.setAsciiStream(3,inputStream); int count = preparedStatement.executeUpdate(); if(count>0){ System.out.println("数据插入成功"); }else{ System.out.println("数据插入失败"); } } catch (SQLException e) { e.printStackTrace(); } catch (FileNotFoundException e) { e.printStackTrace(); }finally { MySQLConnectionUtil.close(connection,preparedStatement,null); } } }
心得:
哪有那么多“天注定” 所有看似幸运和巧合的事都来源于悄悄努力,
你的人生是默默无闻还是光彩显赫,完全取决于你自己。