Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9030893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T07:36:08+00:00 2026-06-16T07:36:08+00:00

I want to fetch data from Oracle using JSP. Multiple parameters should be passed

  • 0

I want to fetch data from Oracle using JSP. Multiple parameters should be passed from the form textbox.

<form method="post" action="num_post.jsp">
Enter Number: <input name="num" type="text" id="num" />

<input type="submit" name="Submit" value="Submit" />
</form>

Here in the text field I want to pass multiple parameters, e.g. 123,456,789,896, etc.

Now in the num_post.jsp I have this code to request the passed parameter in JSP.

<%
 String[] num=request.getParameterValues("num");

 int i=0;

 for(i=0;i<num.length;i++)
 {
      out.println("number Elements       :"+num[i]+"<br/>");
 }
%>

Now I want to fetch data from Oracle using the array parameters, for example: num[i]

<%@page import="java.sql.*"%>
<%@ page import = "java.io.*"%>
<%
 Class.forName("oracle.jdbc.OracleDriver");
 Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","system","oracle");
 Statement st=con.createStatement();
 String sql = "SELECT * from jha where num IN '"+num[i]+"'" ;
 ResultSet rs = st.executeQuery(sql);
 %>

This throws an ArrayOutOfBound exception.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T07:36:09+00:00Added an answer on June 16, 2026 at 7:36 am

    Try this

    String[] num=(request.getParameter("num").toString()).split(",");

    instead of

    String[] num=request.getParameterValues("num");

    =====UPDATE=====

    As you specified, ArrayIndexOutOfBound, which means, you are trying to access out of index from your array. And, it is clear

    String[] num=(request.getParameter("num").toString()).split(","); // let say array size would be 4
    int i=0;  // i initialized by 0
    
     for(i=0;i<num.length;i++)
     {
          out.println("number Elements       :"+num[i]+"<br/>"); 
     }
      // when control reached here, the value of i will be 4 (which is out of index)
    

    Now, in your query you are trying to access 4 index element, which is not there.

    "SELECT * from jha where num IN '"+num[i]+"'"   // here value  of i is 4
    

    That’s why you are getting ArrayIndexOutOfBound. Got it ???

    One more thing, the query, which you have written there, is applicable to check only one value from your array. So, you need to change your query. It won’t show you, your expected output.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In asp.net(C#) i want to fetch data from a database using a stored procedure
I do have an oracle 8 database from which I want to fetch data
I want to fetch some data from mySQL without refreshing the page using jQuery.
I want to fetch data from json array using java gson library following is
I want to fetch the data from Facebook user table using wild cards. But,
I want write a simple query which will fetch data from a table (which
i Want to fetch this data using json decode. Please Help.. So far i
I want to fetch some data from the following database table 'article'. i want
I want to fetch data from separate tables in sqlserver and display them together
Suppose I want to fetch data into an anonymous object (i.e. fetch data from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.