Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~3K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for nelly_1005

Hi nelly No need to do much I hope u are aware of JDBC-ODBC Driver and they are supported by sdk1.4 First create a DSN using ODBC in control pannel later for JSP to connect to Database use the following code <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection conn = DriverManager.getConnection("jdbc:odbc:<DSN name>") % provide …

Member Avatar for ernikhil
0
471
Member Avatar for adityabakle
Member Avatar for obelisk

Hi I find ur code correct. whats the problem u r dealing with Here r some defined steps to be followed for DB operation 1. Initialize the class with the specific driver 2. Create a connection object 3. Create statement 4. Execute query 5. Close the connection eg. consider the …

Member Avatar for javaAddict
1
1K
Member Avatar for adityabakle

In a database program we configure the Access file through ODBC option provide in the control panel. Then we obtain the dns name of the database with wich we connect it to or application. This all is done explictly. I would like to know if this task can be done …

Member Avatar for omgargatte
0
110
Member Avatar for Dark_Omen

copy this following code sample class Test { public static void main(String arg[]) { System.out.println("Hello From the Java World"); } } //////// Save this file as Test.java now start cmd prompt and ur current dir must be the bin of jdk use this command javac Test.java run the application using …

Member Avatar for Dark_Omen
0
260
Member Avatar for nelly_1005

yest the code u mentioned willprint the value in the variable. now if u want to link each result to a wml page just provide it within the value parameter of the option tag. and then write the code on event of onChange fot the list/combo box,

Member Avatar for adityabakle
0
102
Member Avatar for zaman1111

Your Query: SELECT * FROM Job_Request_Record, Requester_Record WHERE Job_Request_Record.Job_Requester_ID = Requester_Reco rd.Requester_ID; Now you want to use the scriplet <% rs.getString("ID"); %> use this query id you want Job.... ID SELECT [B](Job_Request_Record.Job_Requester_ID) as ID[/B], * FROM Job_Request_Record, Requester_Record WHERE Job_Request_Record.Job_Requester_ID = Requester_Reco rd.Requester_ID;

Member Avatar for adityabakle
0
160
Member Avatar for nelly_1005

Hey Buddy I dont know much about wml but i think your JSP file has a tag <code> with same id try searching the id and also use get method to confirm that ur parameter is passed to the JSP as the complete url will appear in the address bar …

Member Avatar for adityabakle
0
159

The End.