Home Database Mysql Tutorial Java+Oracle应用开发的几个常见问题解答

Java+Oracle应用开发的几个常见问题解答

Jun 07, 2016 pm 04:20 PM
several common application development FAQ

问题一:如保加载JDBC驱动程序: 正常我们加载驱动程序有三个途径: 1)Class.forName(String)这想当于classLoader一个String指定的类,在装载时把该驱动程序的静态内容都初始化,其实这时驱动程序类调用了DriverManager.registerDriver(driver)方法 2)使用系

  问题一:如保加载JDBC驱动程序:

  正常我们加载驱动程序有三个途径:

  1)Class.forName(String)这想当于classLoader一个String指定的类,在装载时把该驱动程序的静态内容都初始化,其实这时驱动程序类调用了DriverManager.registerDriver(driver)方法

  2)使用系统属性:System.getProperty().load(new FileInputStream("属性文件"));

  在属性文件中指定jdbc.driver=drivername 这样的好处是可以同时加载多个JDBC,换数据库时不用访问Java源代码,只是修改属性文件

  3)直接registerDriver(driver)这种方法最可靠,可以在任何环境下使用。

  1)方法简单,但MS的JVM不能正确初始化。比如使用IE时在APPLET中就不能使用,应该用3)的方法。但3)方法在灵活性方面不如2),可以根据环境综合考虑。

  问题二:大对象存储

  一般来说,大对象存储是把文件存到数据库中,当然也可以内存中的超大字符串。对于象图片这样的文件当然是用二进制存储,这里有很多误区,网络上的教程99%都是行不通的,连SUN自己的文档都一直错误,虽然错误很小。按说二进制文件应该存为BLOB类型,但JBDC2并不能直接对BLOB存入二进制文件,假如你这样做,会得到一个IO而不是SQL异常,为此花了我近两个小时才弄清楚。   假如要把一个二制文件存入Oracle,用标准的JDBC你就要用LONG ROW类型: create table tb_file(name varchar(20),detail long row);   然后 File file = new File("aaa.gif");

  int fileLength =(int) file.length();

  InputStream fin = new FileInputStream(file);

  PreparedStatement pstmt = con.prepareStatement("insert into tb_file values('aaa.gif',?)");

  pstmt.setBinaryStream (1, fin, fileLength);

  pstmt.executeUpdate();   假如你一定要用BLOB存储,你就必须用ORACLE自己的方法: create table tb_file(name varchar(20),detail BLOB);

  con.setAutoCommit(false);

  stmt.executeUpdate("insert into tb_file values('aaa.gif',empty_blob())");   下面必须SELECT得到BLOB的对象再向里写: rs = stmt.executeQuery("select detail from tb_file where for upfdate" );

  if(rs.next())

  {

  Blob blob = rs.getBlob(1);

  BinaryOutputStream out = ((oracle.sql.BLOB)blob).getBinaryOutputStream();

  byte[] b = new byte[((oracle.sql.BLOB)blob).getBufferSize];

  InputStream fin = new FileInputStream(file);

  int len = 0;

  while( (len = fin.read(b)) != -1)

  out.write(b,0,len);

  fin.close();

  out.close();

  con.commit();

  }

  同样读取数据你并不能象LONG ROW那样 InputStream in = rs.getBinaryInputStream("detail");

  而要 Blob blob = rs.getBlob("detail");

  in = blob.getBinaryStream();

  问题三:可滚动结果集

  ORACLE 明确说明不支持结果集滚动,那么我们用JDBC得到一个可滚动的结果集就是同JDBC自己支持的,就是说结果集要在内存中高度缓存,很多很多的开发者都错误地认为是数据库支持的。只是他们没有真正查询大量行,,假如真的查询大量行的话肯定是死定了!!!!!!对于超大量行的数据,情愿返回到它的笨方法也不要使用可滚动结果集。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Yunshen releases industry application flagship robot dog Jueying X30 Yunshen releases industry application flagship robot dog Jueying X30 Oct 11, 2023 pm 09:45 PM

On October 9, Yunshen Technology released the "Jueying X30" quadruped robot. As a new generation of industry-level products for industry applications, it is targeted at power stations, factories, pipe gallery inspections, emergency rescue, fire investigation, future scientific research, etc. Multi-field core demands bring the world's leading industry capabilities: original integrated sensing capabilities, taking the lead in Asia to achieve rapid and stable obstacle crossing in changing environments, up and down hollow industrial stairs, and all-weather autonomous inspections day and night, breaking more scene restrictions, It can respond quickly to unexpected tasks; for the first time in Asia, the operating temperature range of a quadruped robot has been extended to -20°C to 55°C, significantly broadening the application areas and seasons; it has its own real-time monitoring system and emergency response system to ensure smarter operations. Safe and efficient. Seventeen departments including the Ministry of Industry and Information Technology issued the "Machine

Introduction to speech recognition application development in Java language Introduction to speech recognition application development in Java language Jun 10, 2023 am 10:16 AM

As one of the most popular programming languages ​​at present, Java language is widely used in various application development fields. Among them, speech recognition applications are an area that has attracted much attention in recent years, especially in smart homes, smart customer service, voice assistants and other fields, speech recognition applications have become indispensable. This article will introduce readers to how to use Java language to develop speech recognition applications. 1. Classification of Java speech recognition technology Java speech recognition technology can be divided into two types: one is encapsulated using Java language and the third is encapsulated in Java language.

Introduction to smart agriculture application development in Java language Introduction to smart agriculture application development in Java language Jun 10, 2023 am 11:21 AM

With the development of the times, the agricultural field has also begun to upgrade and transform with the help of modern scientific and technological means, and smart agriculture has emerged as the times require. As a computer programming language with excellent performance and strong portability, Java has high popularity and application value, and has become one of the important solutions for smart agricultural application development. This article aims to introduce the development process, application scenarios and advantages of smart agricultural applications in Java language. 1. Development process of smart agricultural applications in Java language. The development process of smart agricultural applications is divided into requirements analysis,

Introduction to smart city application development in Java language Introduction to smart city application development in Java language Jun 10, 2023 am 11:16 AM

Smart cities are constantly developing and have become a new direction and goal for urban construction. Smart cities use artificial intelligence, Internet of Things technology and other means to achieve informatization, intelligence and sustainable development of the city. The Java language is one of the main tools for smart city application development. 1. The role of Java language in smart city application development. As a mainstream programming language, Java language has excellent cross-platform and portability, and can be applied to various operating systems and hardware platforms. Java language supports object-oriented programming

Introduction to video processing application development in Java language Introduction to video processing application development in Java language Jun 10, 2023 pm 04:31 PM

Introduction to Video Processing Application Development in Java Language With the continuous development of the Internet and digital technology, video has become an indispensable part of people's lives. Whether it is short video applications or online education platforms, videos occupy an important position. Among them, video processing applications have become one of the hot topics. This article will introduce the development of video processing applications in Java language. 1. Video processing class library in Java language. As a cross-platform programming language, the power of Java language lies in its rich class library, including

What are the common template engines in PHP programming? What are the common template engines in PHP programming? Jun 12, 2023 am 09:50 AM

In recent years, the template engine in PHP programming has become an important part of PHP development, making it easier for programmers to develop and manage pages. This article will introduce common template engines in PHP programming. SmartySmarty is a commonly used PHP template engine. It supports a series of functions such as cached templates, plug-in modules and custom functions. Smarty's syntax is very flexible and can solve the problem of combining PHP variables with HTML tags, making the PHP language more suitable for templated design. Moreover, S

FAQ for pandas reading txt files FAQ for pandas reading txt files Jan 19, 2024 am 09:19 AM

Pandas is a data analysis tool for Python, especially suitable for cleaning, processing and analyzing data. During the data analysis process, we often need to read data files in various formats, such as Txt files. However, some problems will be encountered during the specific operation. This article will introduce answers to common questions about reading txt files with pandas and provide corresponding code examples. Question 1: How to read txt file? txt files can be read using the read_csv() function of pandas. This is because

Introduction to object recognition application development in Java language Introduction to object recognition application development in Java language Jun 09, 2023 pm 10:19 PM

Introduction to object recognition application development in Java language Item recognition is a technology that enables computers to identify and classify objects. This technology has been widely used in many fields, such as medicine, security, manufacturing, military, and robotics. This article will introduce the related technologies and steps for developing object recognition applications in Java language. Java is a widely used programming language popular for its cross-platform, security, and portability. Developing object recognition applications in Java requires the use of the following technologies: 1. Computer vision technology Computer

See all articles