makeVersion.java
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /**
  2.  * This class is used by the makefile to determine which version of the
  3.  * JDK is currently in use, and if it's using JDK1.1.x then it returns JDBC1
  4.  * and if later, it returns JDBC2
  5.  *
  6.  * $Id: makeVersion.java,v 1.1 1999/01/17 04:51:49 momjian Exp $
  7.  */
  8. public class makeVersion
  9. {
  10.     public static void main(String[] args) {
  11. String key     = "java.version";
  12. String version = System.getProperty(key);
  13. //System.out.println(key+" = ""+version+""");
  14. // Tip: use print not println here as println breaks the make that
  15. // comes with CygWin-B20.1
  16. if(version.startsWith("1.0")) {
  17.     // This will trigger the unknown rule in the makefile
  18.     System.out.print("jdbc0");
  19. } else if(version.startsWith("1.1")) {
  20.     // This will trigger the building of the JDBC 1 driver
  21.     System.out.print("jdbc1");
  22. } else {
  23.     // This will trigger the building of the JDBC 2 driver
  24.     System.out.print("jdbc2");
  25. }
  26.     }
  27. }