Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application I have to fetch records and need to put them in to 2D array. I have to fire two queries first to find out the count so that I can initialize the array and second is to fetch the data. It results in performance hit. I need solution to improve the performance.

Thanks.

share|improve this question
3  
Why not use a suitable implementation of the List interface? – trashgod Apr 19 '11 at 5:09
Thanks for your reply. We have not used the entity to hold the data. So we have to use the 2D array. This is the reason I am not using the List. – DMS Apr 19 '11 at 5:15
i don't understand this answer. trashgod's question to me seems on target. Can you expand on why you need to use arrays? – MeBigFatGuy Apr 19 '11 at 5:24

2 Answers

up vote 2 down vote accepted

I have to fire two queries first to find out the count so that I can initialize the array and second is to fetch the data.

You can combine your 2 queries as:

select *,(select count(*) from table) as counting from table;
share|improve this answer
Hey thanks for the reply. – DMS Apr 19 '11 at 5:06
Will it make any difference in performance as we are firing two queries? – DMS Apr 19 '11 at 5:06
Yes it will affect performance. – Harry Joy Apr 19 '11 at 5:09
Okay I will try this. Thanks. :) – DMS Apr 19 '11 at 5:12
It might depend if the DB is smart enough to know it's "really" just one query. I'm curious, why do you have to know the result set size up front? So you can shape your 2D array correctly? – seand Apr 19 '11 at 5:13
show 2 more comments

Also consider using a suitable Collection, such as List<List<Object>>. For improved type-safety, consider using Class Literals as Runtime-Type Tokens; the query example is near the bottom.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.