org.postgresql.util.PGJDBCMain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mogdb-jdbc Show documentation
Show all versions of mogdb-jdbc Show documentation
Java JDBC driver for MogDB
/*
* Copyright (c) 2004, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/
package io.mogdb.util;
import io.mogdb.Driver;
import java.io.IOException;
import java.io.InputStream;
import java.util.jar.Attributes;
import java.util.jar.Manifest;
public class PGJDBCMain {
public static void main(String[] args) {
if (args.length > 0 && args[0].compareTo("GSVERSION") == 0)
{
String gsversion = Driver.getGSVersion();
System.out.println(gsversion);
return;
}
java.net.URL url = Driver.class.getResource("/org/postgresql/Driver.class");
System.out.printf("%n%s%n", io.mogdb.util.DriverInfo.DRIVER_FULL_NAME);
System.out.printf("Found in: %s%n%n", url);
System.out.printf("The PgJDBC driver is not an executable Java program.%n%n"
+ "You must install it according to the JDBC driver installation "
+ "instructions for your application / container / appserver, "
+ "then use it by specifying a JDBC URL of the form %n jdbc:postgresql://%n"
+ "or using an application specific method.%n%n"
+ "See the PgJDBC documentation: http://jdbc.postgresql.org/documentation/head/index.html%n%n"
+ "This command has had no effect.%n");
System.exit(1);
}
}