kkk guptha

Greenhorn
+ Follow
since Nov 17, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by kkk guptha

Hi,

You can get the result with pst.executeUpdate(); instead of pst.execute();

--- KKKGuptha
Hi,
I think Data coming from DB default is String only.
If you want to convert into Integer type, int i = Integer.parseInt(string);


--- KKKGuptha
For MS-Access connection,
-- First you have to register DSN and make username and password there.
-- After that link the database of your application to that DSN.
-- In the connection statement, mention as
connection myconn = DriverManager.getConnection("jdbc:odbc:DSNname","username","password");



---KKK Guptha