I've found really good information/tutorials online for writing from my java application to my MySQL database.

Can someone direct to one on retrieving information from my database to store as variables in my application?

Thanks

Peace and love,
oldezwe

Recommended Answers

All 3 Replies

The only functions i can find being used is 'insert into' for sql.

ex:

String s1="insert into userInfo(username, password, experience, level)"
				+" values ('"+username+"','"+password+"','"+experience+"','"+level+"')";

how do i withdraw from my sql database?

Write a select query....
Eg:-
select * from userInfo;

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.