이것은 매우 간단한 작업이 아니어야합니까? 그러나 나는 방법 size()
도 없습니다 length()
.
이것은 매우 간단한 작업이 아니어야합니까? 그러나 나는 방법 size()
도 없습니다 length()
.
답변:
할 SELECT COUNT(*) FROM ...
대신 쿼리를.
또는
int size =0;
if (rs != null)
{
rs.last(); // moves cursor to the last row
size = rs.getRow(); // get row id
}
두 경우 모두 전체 데이터를 반복 할 필요가 없습니다.
select count
?를 실행할 때 반환되는 값을 어떻게 가져 옵니까 ?
ResultSet#last()
수행은하지의 모든 유형에 대한 작업 ResultSet
개체를, 당신은 당신이 중 하나를 사용해야 ResultSet.TYPE_SCROLL_INSENSITIVE
또는ResultSet.TYPE_SCROLL_SENSITIVE
ResultSet rs = ps.executeQuery();
int rowcount = 0;
if (rs.last()) {
rowcount = rs.getRow();
rs.beforeFirst(); // not rs.first() because the rs.next() below will move on, missing the first element
}
while (rs.next()) {
// do your standard per row stuff
}
getRow()
작동 TYPE_FORWARD_ONLY
ResultSet를, 그리고 beforeFirst()
사람들을 위해 오류가 발생합니다. 이 대답이 잘못이 아닙니까?
ps=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
글쎄, 당신이 ResultSet
유형 을 가지고 있다면 ResultSet.TYPE_FORWARD_ONLY
그것을 그렇게 유지하고 싶 거나 (또는 로 전환 하지 않기 위해)ResultSet.TYPE_SCROLL_INSENSITIVE
ResultSet.TYPE_SCROLL_INSENSITIVE
.last()
).
행 수를 포함하는 첫 번째 가짜 / 포니 행을 맨 위에 추가하는 매우 훌륭하고 효율적인 해킹을 제안합니다.
예
쿼리가 다음과 같다고 가정 해 봅시다.
select MYBOOL,MYINT,MYCHAR,MYSMALLINT,MYVARCHAR
from MYTABLE
where ...blahblah...
그리고 당신의 출력은 다음과 같습니다
true 65537 "Hey" -32768 "The quick brown fox"
false 123456 "Sup" 300 "The lazy dog"
false -123123 "Yo" 0 "Go ahead and jump"
false 3 "EVH" 456 "Might as well jump"
...
[1000 total rows]
코드를 다음과 같이 리팩터링하면됩니다.
Statement s=myConnection.createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_READ_ONLY);
String from_where="FROM myTable WHERE ...blahblah... ";
//h4x
ResultSet rs=s.executeQuery("select count(*)as RECORDCOUNT,"
+ "cast(null as boolean)as MYBOOL,"
+ "cast(null as int)as MYINT,"
+ "cast(null as char(1))as MYCHAR,"
+ "cast(null as smallint)as MYSMALLINT,"
+ "cast(null as varchar(1))as MYVARCHAR "
+from_where
+"UNION ALL "//the "ALL" part prevents internal re-sorting to prevent duplicates (and we do not want that)
+"select cast(null as int)as RECORDCOUNT,"
+ "MYBOOL,MYINT,MYCHAR,MYSMALLINT,MYVARCHAR "
+from_where);
쿼리 출력은 이제 다음과 같습니다.
1000 null null null null null
null true 65537 "Hey" -32768 "The quick brown fox"
null false 123456 "Sup" 300 "The lazy dog"
null false -123123 "Yo" 0 "Go ahead and jump"
null false 3 "EVH" 456 "Might as well jump"
...
[1001 total rows]
그래서 당신은 단지
if(rs.next())
System.out.println("Recordcount: "+rs.getInt("RECORDCOUNT"));//hack: first record contains the record count
while(rs.next())
//do your stuff
ResultSet.TYPE_FORWARD_ONLY
)
int i = 0;
while(rs.next()) {
i++;
}
사용할 때 예외가 발생했습니다 rs.last()
if(rs.last()){
rowCount = rs.getRow();
rs.beforeFirst();
}
:
java.sql.SQLException: Invalid operation for forward only resultset
기본적으로는이므로 ResultSet.TYPE_FORWARD_ONLY
사용할 수 있습니다.rs.next()
해결책은 다음과 같습니다.
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
ResultSet.TYPE_FORWARD_ONLY
로 전환 하면 ResultSet.TYPE_SCROLL_INSENSITIVE
일반적으로 성능 이 크게 저하됩니다.
SELECT COUNT(*) FROM default_tbl
전에 사용했을 때 SELECT COUNT(*) FROM default_tbl
1.5 초 미만이 걸렸습니다. 나는 임베디드 Derby 데이터베이스 10.11.1.1 테스트
[속도 고려]
여기에 많은 ppl이 제안 ResultSet.last()
하지만 ResultSet.TYPE_SCROLL_INSENSITIVE
Derby 내장 데이터베이스의 경우 최대 10 배 보다 느리 므로 연결을 열어야합니다.ResultSet.TYPE_FORWARD_ONLY
.
임베디드 Derby 및 H2 데이터베이스에 대한 나의 마이크로 테스트에 따르면 SELECT COUNT(*)
SELECT 전에 호출하는 것이 훨씬 빠릅니다 .
행 수를 수행하는 간단한 방법입니다.
ResultSet rs = job.getSearchedResult(stmt);
int rsCount = 0;
//but notice that you'll only get correct ResultSet size after end of the while loop
while(rs.next())
{
//do your other per row stuff
rsCount = rsCount + 1;
}//end while
String sql = "select count(*) from message";
ps = cn.prepareStatement(sql);
rs = ps.executeQuery();
int rowCount = 0;
while(rs.next()) {
rowCount = Integer.parseInt(rs.getString("count(*)"));
System.out.println(Integer.parseInt(rs.getString("count(*)")));
}
System.out.println("Count : " + rowCount);
ResultSet 인터페이스 의 런타임 값을 확인하고 거의 항상 ResultSetImpl 이라는 것을 알았습니다 . ResultSetImpl에는 getUpdateCount()
찾고자하는 값을 리턴 하는 메소드 가 있습니다.
이 코드 샘플은 다음과 같이 충분합니다.
ResultSet resultSet = executeQuery(sqlQuery);
double rowCount = ((ResultSetImpl)resultSet).getUpdateCount()
다운 캐스팅은 일반적으로 안전하지 않은 절차이지만이 방법으로 아직 실패하지는 않았습니다.
java.lang.ClassCastException: org.apache.tomcat.dbcp.dbcp.DelegatingResultSet cannot be cast to com.mysql.jdbc.ResultSetImpl
theStatement=theConnection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
ResultSet theResult=theStatement.executeQuery(query);
//Get the size of the data returned
theResult.last();
int size = theResult.getRow() * theResult.getMetaData().getColumnCount();
theResult.beforeFirst();
나는 같은 문제를 겪고 있었다. ResultSet.first()
실행 직후에 이런 방식으로 사용하면 해결됩니다.
if(rs.first()){
// Do your job
} else {
// No rows take some actions
}
문서 ( 링크 ) :
boolean first() throws SQLException
커서를이
ResultSet
객체 의 첫 번째 행으로 이동 합니다.보고:
true
커서가 유효한 행에있는 경우false
결과 집합에 행이없는 경우던졌습니다 :
SQLException
-데이터베이스 액세스 오류가 발생한 경우 이 메소드는 닫힌 결과 세트에서 호출되거나 결과 세트 유형이TYPE_FORWARD_ONLY
SQLFeatureNotSupportedException
-JDBC 드라이버가이 메소드를 지원하지 않는 경우이후:
1.2
열 이름을 지정하십시오 ..
String query = "SELECT COUNT(*) as count FROM
ResultSet 객체의 열을 int로 참조하고 거기에서 논리를 수행하십시오.
PreparedStatement statement = connection.prepareStatement(query);
statement.setString(1, item.getProductId());
ResultSet resultSet = statement.executeQuery();
while (resultSet.next()) {
int count = resultSet.getInt("count");
if (count >= 1) {
System.out.println("Product ID already exists.");
} else {
System.out.println("New Product ID.");
}
}