Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Apr 2016 15:25:39 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 208781] [MAINTAINER] java/sqlitejdbc: fix WWW
Message-ID:  <bug-208781-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208781

            Bug ID: 208781
           Summary: [MAINTAINER] java/sqlitejdbc: fix WWW
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
               URL: http://web.archive.org/web/20120721075310/http://www.z
                    entus.com/sqlitejdbc/
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: freebsd-ports-bugs@FreeBSD.org
          Reporter: lapo@lapo.it
                CC: madpilot@FreeBSD.org

Created attachment 169292
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D169292&action=
=3Dedit
patch

Fix WWW with Web Archive, as the original site is long dead.

BTW: the project itself is very old (and has since been forked by different
people and changed from BSD to APACHE license), but since we're using it as=
 a
small wrapper around native libsqlite3.so.0 from Ports it's always using the
latest release, as can be verified with:

    public static void main(String[] args) throws Exception {
        Class.forName("org.sqlite.JDBC");
        Connection conn =3D
DriverManager.getConnection("jdbc:sqlite:test.sqlite");
        DatabaseMetaData db =3D conn.getMetaData();
        System.out.println("Database: " +db.getDatabaseProductName());
        System.out.println("Version:  " +db.getDatabaseProductVersion());
    }

which currently prints:

    Database: SQLite
    Version:  3.11.1

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-208781-13>