No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
I've created checkbox and added events to it through js file which is included in the jsp. It works fine in IE but not in Mozilla Firefox 1.5. This is the code fragments. displayCheckbox.name = "Add_" +productid; displayCheckbox.id ="Add_"+productid; displayCheckbox.onclick = EventProducer.registerEventHandler(this, 'toggleSelected', [displayCheckbox, displayLI]); displaySpan.onclick = EventProducer.registerEventHandler(this, 'clickCheckbox', [displayCheckbox]); … | |
Re: JDBC acts like bridge between your front-end (may be web-application,jsp,vb,form etc.,)and back-end(database). JDBC will talk to you db. Choose appropriate jdbc drivers for Oracle9i. Ensure that jdbc drivers available in your machine through Settings/ControlPanel in Windows. The simple code fragments: Class.forName("sun.jdbc.odbc.JdbcOdbc"); Connection conn=DriverManager.getConnection(dsn,"username",pwd"); Statement st = conn.createStatement(); ResultSet rs = … |
The End.