neeraj

Greenhorn
+ Follow
since Feb 18, 2000
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 neeraj

Hi,
I have got total 3+ yrs IT experaince and working in java for the past one year.
Right now I am in India. I am looking for U.S assignment.Can any body suggest me which site will be helpful for me to post my resume.Is there any consultancy firms in U.S. who can directly recruit people from India?
23 years ago
You have place the servlet class in javawebserver/servlets directory.
You can access the servlet by giving the URL as
http://localhost:8080/servlet/filename
Eg:- http://Neeraj:8080/servlet/Stock
23 years ago
Hi All,
I want to get values from the database and show it on the applet. I am attaching the code for connecting the database. It is giving Security Exception Error
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.net.URL;
import javax.swing.table.TableColumn;
import java.sql.SQLException;
import java.sql.*;
import java.applet.Applet;
public class TablePanel extends Applet {
public void init() {
// setLayout (new BorderLayout());
try
{
Connection con = null;
Statement stmt = null;
Statement stmt1 = null;
ResultSet rs = null;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con = java.sql.DriverManager.getConnection("jdbc dbc ubs","sa","sa");

stmt = con.createStatement();
String sQuery = "select * from w_users";
rs = stmt.executeQuery(sQuery);
rs.next();

}
catch(SQLException ex)
{
System.out.println("Error");
}
catch(ClassNotFoundException ex)
{
System.out.println("Class not found");

}

}
}
Pls suggest me how to do this.
Thanks in advance
23 years ago
Can any one suggest a good book on JSP.
Thanks in advance.
23 years ago
Congrats Ram .....
Please pass tips and notes to neerah_ak@yahoo.com
Thanks in advance
Neeraj
Pls pass tips and notes to neeraj_ak@yahoo.com
Thanks in advance
Neeraj
I want to retrive image which is in sqlserver 6.5 as image. I tried to use rs.getBlob() method,But I am still not able to print the image on the browser. It only prints hexa values of the image.
Pls respond ASAP
neerajk@comatindia.com
24 years ago
I am getting the error' Method abs() not found' error . when I compile the following code.
Please explain me why???
import java.lang.Math;
public class Testexam {
public static void main (String args []) {
double d = 12.56;
System.out.println(abs(d));
}
}

24 years ago
There is no need to add all the Listeners code.
Both 0x7, 0x07 is equivalent to 7.