balaji jayaram

Greenhorn
+ Follow
since Aug 10, 2003
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 balaji jayaram

Thank U all for your great suggestions.
John, You suggested of Blazix from Desiderata.
Is that one free like JBoss?? Where can I search to get more information on this server.
I have lot of problems in configuring JBoss server with my applications . Is there any tutorials online regarding this?
Thanx once again to all
Hi
I am doing one project on Project Management system using j2ee technologies.
Which application server I should use while testing and while implementing in some small companies which application server best describes their needs.
I am also doing on another project called autonomous college automation. Should I use Java application server provided by Sun along with J2EE 1.4 beta release. In what way it is different from iPlanet or other app servers.
Can anybody provide me with ample information regarding this?
thanx
Hi,
I am designing a Project tracking system for IT companies. I am using J2EE technologies in developing the project. The project is aimed for some small scale companies, so investment in this project is considered to be a major issue for those companies. Do anybody tell me which kind of application server and web server will best meet their need and ofcourse to much effective in designing.
Thanks
Thank you Lasse and Pradeep for your suggestions.
I need some examples on JDBC using jdbc thin clients and OCI.
Thanks...
Hi,
I am new to Java JDBC. I tried one small program to connect to Oracle database and it results in an error saying "Driver not found"
This is the code snippet I tried:
String url = "jdbc dbc.<dsn>"
Properties p = new Properties();
p.put("UID","scott");
p.put("PWD","tiger");
Connection conn = DriverManager.getConnection(url,p);
String select = "SELECT EMPNO FROM EMP";
PreparedStatement ps = conn.prepareStatement(select);
ResultSet rs = ps.executeQuery();
int empno = rs.getInt(1);
System.out.println(empno);

There may be some syntax error. But this is my logic. I don't know what I missed. I need some suggestion from you.
Thank You