Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

link to Jsp



Hello
 
I'm trying to connect to my postgresql db from a JSP page but my db is on one computer and the jsp in another..
 
Has anyone done something like this before??
 
 private synchronized Connection getConnection() throws ClassNotFoundException,
      SQLException {
    final String DRIVER = "org.postgresql.Driver";
    final String URL = "";
    final String USERNAME = "postgres";
    final String PASSWORD = "form";
 
    Class.forName(DRIVER);
 
    return DriverManager.getConnection(URL, USERNAME, PASSWORD);
 }
 
Thanks
 
Shavonne Wijesinghe


Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group