dhirajsrivastava

Greenhorn
+ Follow
since May 12, 2001
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 dhirajsrivastava

Thanks
I will try and then reply
thanks to both shweta and cindy
dhiraj
22 years ago
Hello
Can any one tell me how can i use draw string on panel
thanks in advance
Dhiraj
22 years ago
its urgent please help
dhiraj
22 years ago
hi
here is full desc i am working on AWT as u know banking appl. Access as a back end i want to fetch the table in the database i.e transaction table in which all the transaction are there
is AWT supported bye the table option do tell if u want more discription
Thanks in advance
Dhiraj
22 years ago
Hi
I am developing a banking application with MS-Access as a back end can any one please tell me how can i develop a balance sheet on the panel of frame mean i have to fetch the a transaction table from the access
dhiraj
22 years ago
hi all
can any one please give me the code for connectivity b/w java and ms access
and please specify the driver for this purpose
thanks
dhiraj
hello smita
can u please tell me what is the concept of host string may i write localhost as host string and one thing more for connection b/w java and ms-accsess this driver is valid.
Thanks
dhiraj
Hello
Can any one please tell me how can i connect jdk1.3 to ms acces as back end
thanks in advance
hello all
i have oracle 8 installed in my system which i want to connect with my JDK1.3
here i passing the following string in DriverManager.getConnection
"jdbc dbc:thin:@(here i have to pass host string what is this?):1521 rcl8"
can any one tell me what is this host string whether it is machine name or some thing else
here is the following code:
import java.sql.*;
import oracle.jdbc.driver.*;
class tryjdbc {
public static void main(String args[]) thorws Exception {
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String url="jdbc racle:thin:@(host string?):1521 rcl";
Connection con=DriverManager.getConnection(url,"scott","tiger");
Statement stmt=con.createStatement();
stmt.executeUpdate("CREATE TABLE BOOKS"+"(BOOK_NAME VARCHAR(32), SUP_ID INTEGER,PRICE FLOAT," +"SALES INTEGER,TOTAL INTEGER)");
stmt.executeUpdate("INSERT INTO BOOKS"+"VALUES('JAVA',101,450.00,0,0)");
}
catch(Exception e) {
System.out.println(e);
}
}
}