|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
Connection to server using another jsp page
Currently, i have hardcoded the server connection in every page and is very tedious if there are any changes to it.
Therefore, i need to know how to connect to the server by calling up a page that contains the server information. The coding i have now is: String connectionURL = "jdbc:mysql://servername/databaseName?user=username to enter the server & password=password to enter the server"; Connection connection = null; Statement statement = null; ResultSet rs = null; Class.forName("org.gjt.mm.mysql.Driver").newInstance(); connection = DriverManager.getConnection(connectionURL, "", ""); statement = connection.createStatement(); pls help.... |
|
#2
|
|||
|
|||
|
You can use the <%@ include file="" %> tag to include a file into your jsp's. Take whatever code you have duplicated in many jsp files, put it in a single file, and then replace the code in your pages with the include tag.
|
|
#3
|
|||
|
|||
|
Thanks
Thanks preaney for ur help....
i have another question, it is to display retrieved data in certain number of rows. if possible, pls help.... |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Java Help > Connection to server using another jsp page |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|