[Bug 208781] [MAINTAINER] java/sqlitejdbc: fix WWW
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Apr 13 15:25:39 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208781
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 at FreeBSD.org
Reporter: lapo at lapo.it
CC: madpilot at FreeBSD.org
Created attachment 169292
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=169292&action=edit
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 =
DriverManager.getConnection("jdbc:sqlite:test.sqlite");
DatabaseMetaData db = conn.getMetaData();
System.out.println("Database: " +db.getDatabaseProductName());
System.out.println("Version: " +db.getDatabaseProductVersion());
}
which currently prints:
Database: SQLite
Version: 3.11.1
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list