Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~759 People Reached
Favorite Tags
Member Avatar for khurram.1987

#MySQL TABLES CRASHED BUT STILL WORKING WHEN RESTORED TO MySQL ON ANOTHER SYSTEM, WHY ???# Hi everyone, I'm a software developer and just started my professional career life, question here i want to ask is ... that few days ago i was at client site to resolve some issue in …

Member Avatar for khurram.1987
0
246
Member Avatar for khurram.1987

Hi, i am trying to connect to MySQL database [ICODE]mysql[/ICODE] using JAVA .. using code given below, [CODE]import java.sql.*; public class dbExample{ public static void main(String[] args) { System.out.println("Listing all table name in Database!"); Connection con = null; String url = "jdbc:mysql://localhost:3306/"; String db = "mydb"; String driver = "com.mysql.jdbc.Driver"; …

Member Avatar for khurram.1987
0
153
Member Avatar for khurram.1987

I am trying to process data by servlet sended by jsp form using AJAX..... with 'GET' method its working okey ... but using 'POST' method to do this creating problem that [CODE]onreadystatechage[/CODE] condition not exectue at [CODE](xmlhttp.readyState==4 && xmlhttp.status==200)[/CODE]. [CODE]xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 || xmlhttp.status==200) { alert("state=4 OR 200"); //for …

0
98
Member Avatar for khurram.1987

when we call servlet from a JSP page .. explorer/program moves to servlet page .... Such in my scenareo i have JSP form that on submiting call servlet to retrieve data from XML .. But problem is that . i like that on submitin form servlet runs in background without …

0
81
Member Avatar for khurram.1987

Hello, I am creating TextChat site .. on java Servlet .. I want to know the mechanism of identifying each user to forward message updates between each other in that perticular chat room. whether it i by knowing there ip-adress OR how. THANKS to all Helpers ....

0
114
Member Avatar for khurram.1987

Hello. Actually not that much good in web development ... So i need little help in doing this work. I am creating realtime chating site in which i am having problem that how to send mesages to user's. I've read some simple example on internet they uses request to server …

0
67