Main   Products   Offshore Outsourcing   Customers   Partners   ContactUs  
JDBC Databases
  HXTT Access v7.1
  HXTT Cobol v5.0
  HXTT DBF v7.1
 
  Buy Now
  Support
  Download
  Document
  FAQ
  HXTT Excel v6.1
  HXTT Json v1.0
  HXTT Paradox v7.1
  HXTT PDF v2.0
  HXTT Text(CSV) v7.1
  HXTT Word v1.1
  HXTT XML v4.0
Offshore Outsourcing
Free Resources
  Firewall Tunneling
  Search Indexing Robot
  Conditional Compilation
  Password Recovery for MS Access
  Password Recovery for Corel Paradox
  Checksum Tool for MD5
  Character Set Converter
  Pyramid - Poker of ZYH
   
   
   
Heng Xing Tian Tai Lab of Xi'an City (abbr, HXTT)

HXTT DBF
Select For Update Problem
Nick Holcombe
2006-11-24 07:08:17
Hi,

I'm trying to perform a SELECT .. FOR UPDATE and get an SQLException saying my connection is in readonly mode - please can you tell me what I am doing wrong?

I've included the testcase code and Exception below.

Thanks
Nick.

My example testcase:
public class TestSelectForUpdate {

public static void main(String[] args) throws Exception {
Class.forName("com.hxtt.sql.dbf.DBFDriver");
String url = "jdbc:dbf:/c:\\data\\SHSUB";
Properties info = new Properties();
Connection conn = DriverManager.getConnection(url, info);

Statement stmt=conn.createStatement();
stmt.executeQuery("select * from demo where id = 4700 for update");


conn.close();
}
}

When I run the above code, I get the following Exception:
java.sql.SQLException: FOR UPDATE has been used but your connection is in readonly mode.
Re:Select For Update Problem
HXTT Support
2006-11-24 07:14:15
>Statement stmt=conn.createStatement();
According to JDBC API, the defaulte value is ResultSet.CONCUR_READ_ONLY, you should use:
conn.createStatementResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);


Search Key   Search by Last 50 Questions




Google
 

Email: webmaster@hxtt.com
Copyright © 2003-2019 Heng Xing Tian Tai Lab of Xi'an City. | All Rights Reserved. | Privacy | Legal | Refund | Sitemap