- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
8 Posted Topics
Re: 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 … | |
How to get IP Address of all PC through java program | |
Re: 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 … | |
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 … | |
Re: 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 … | |
Re: 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, | |
Re: 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; | |
Re: 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 … |
The End.