MySQL Forums
Forum List  »  MyISAM

Re: large tables, large keycaches
Posted by: Roland Bouman
Date: July 28, 2005 06:38PM

Does it not take advantage of the generic java interface?

I mean,

import java.sql.*;

Connection conn;
//init conn
...
PreparedStatement pstmt = conn.prepareStatement("SELECT * FROM somtable WHERE someStringColumn = ?");
pstmt.setString(1,"myValue");
ResultSet rst = pstmt.executeQuery();
//traverse the resultset:
while (rst.next()){
//do stuff with this current row
}

Options: ReplyQuote


Subject
Views
Written By
Posted
9391
July 25, 2005 09:12PM
3220
July 26, 2005 08:43AM
3167
July 26, 2005 10:37AM
3457
July 26, 2005 11:49AM
3213
July 26, 2005 02:27PM
2840
July 26, 2005 04:36PM
2933
July 27, 2005 10:49AM
2995
July 27, 2005 03:52PM
Re: large tables, large keycaches
2573
July 28, 2005 06:38PM
2554
August 02, 2005 08:04PM
2679
July 26, 2005 10:51AM
2501
July 27, 2005 07:48AM
2908
July 28, 2005 01:08PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.