Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi
Code below as I see it get specific value from database. What do you use to get the collection of all values inside your tables

Java
resultSet = statement.executeQuery("SELECT password,username FROM tbl_Credantials");
            while (resultSet.next())
            {
                  String userName = resultSet.getString("username ");

            }


I need something that works the same as this code below

Java
OleDbCommand cmd = new OleDbCommand("SELECT * FROM tbl_Credantials", con);


                DataTable dTable = new DataTable();
                OleDbDataAdapter adapter = new OleDbDataAdapter(cmd);
                adapter.SelectCommand = cmd;
                adapter.Fill(dTable);

                return dTable;
Posted
Updated 24-Sep-12 22:07pm
v6
Comments
fjdiewornncalwe 24-Sep-12 13:58pm    
The code you have does get a collection of rows from the tbl_Credantials table. I'm not sure if your question is clear enough. Use the Improve Question widget to add some more information if you could.
Anele Ngqandu 24-Sep-12 14:11pm    
the first code gets username only. how do you make it read and store username + password just like the second code stores both username + password data to a DataTable
TorstenH. 25-Sep-12 4:08am    
you just change the SQL-Command. The database will return the data then.

I changed some keywords to SQL, cause this is all about database commands.
Anele Ngqandu 25-Sep-12 4:38am    
Torsten am not talking about the sql-command am talking about the code that stores data from the database tables

1 solution

Java does not have the .net style DataTable object, so you will have to create your own.
 
Share this answer
 
Comments
Anele Ngqandu 25-Sep-12 5:38am    
Yes sir but what do you use?
Mehdi Gholam 25-Sep-12 5:40am    
I don't program in java.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900