Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Connecting to PostgreSQL 8.x"

Line 4: Line 4:
  
 
''DTP 0.9 does not have a separate PostgreSQL driver template. You can, however, override the values in another driver template to get what is needed here.''
 
''DTP 0.9 does not have a separate PostgreSQL driver template. You can, however, override the values in another driver template to get what is needed here.''
 +
 +
* Let UN == user name
 +
* Let PW == password
 +
 +
Then
 +
 +
* Choose any driver template from the list and override all values
 +
* Name the driver template "PostgreSQL 8.x"
 +
* Jar: postgresql-8.1-404.jdbc2.jar
 +
* Driver: org.postgresql.Driver
 +
* Database name: postgres
 +
* URL: jdbc:postgresql:postgres

Revision as of 11:39, 13 July 2006

Back to How Do I Connect to...

PostgreSQL 8.x

DTP 0.9 does not have a separate PostgreSQL driver template. You can, however, override the values in another driver template to get what is needed here.

  • Let UN == user name
  • Let PW == password

Then

  • Choose any driver template from the list and override all values
  • Name the driver template "PostgreSQL 8.x"
  • Jar: postgresql-8.1-404.jdbc2.jar
  • Driver: org.postgresql.Driver
  • Database name: postgres
  • URL: jdbc:postgresql:postgres

Back to the top