DataNucleus Access Platform 1.1.0.m1 (Rutherford branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News DataNucleus Access Platform 1.1.0.m1 (Rutherford branch)
# 1  
Old 09-23-2008
DataNucleus Access Platform 1.1.0.m1 (Rutherford branch)

DataNucleus Access Platform is a standards-compliant Java persistence product. It is fully compliant with the JDO1, JDO2, JDO2.1, and JPA1 Java standards. It also complies with the OGC Simple Feature Specification for persistence of geospatial Java types. It allows access to all popular RDBMSs available today, together with db4o, LDAP, NeoDatis, JSON, Excel documents, and XML databases. License: The Apache License 2.0 Changes:
The JDK requirement for 1.1 has been changed to JDK 1.5 or later. Support for JPQL bulk delete has been added for db4o, NeoDatis, Excel, XML, LDAP, and JSON datastores. RDBMS table existence checks have been improved. RDBMS datastore log startup has been cleaned up. Support for db4o has been raised to version 7.0 or later. Support for NucleusSQL querying for RDBMS has been removed. Support for (cast) and JPQL "" generic query compilation has been added. Several bugs have been fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Debian::Javahelper::Java(3)					    Javahelper					       Debian::Javahelper::Java(3)

NAME
Debian::Javahelper::Java - Javahelper core library. SYNOPSIS
use Debian::Javahelper::Java; my @paths = scan_javadoc("/usr/share/doc/libfreemarker-doc/api/"); print "Freemarker is linked to the following APIs: - ", join(" - ", @paths), " "; my @packnames = find_package_for_existing_files("/bin/ls", "/bin/bash"); print "/bin/ls and /bin/bash are installed via: ", join(", ", @packnames), " "; DESCRIPTION
This module is used by various javahelpers to share common code. Please note this API is not stable and backwards compatibility is not guaranteed at the current time. Please contact the maintainers if you are interested in a stable API. Methods scan_javadoc($path) Scans the javadoc at $path and returns a list of javadocs it is linked to on the system. Currently it ignores all javadocs linked via other locations than /usr/share/doc and it also makes an assumption that the linked javadoc is in /usr/share/doc/<package>/<dir-or-symlink>. Of course, all Java Policy compliant packages provide their javadoc from there. If /usr/share/doc/<package>/<dir-or-symlink> appears to be a symlink, then it is followed (except for default-jdk-doc). find_package_for_existing_files(@files) Consults dpkg(1) to see which packages provides @files and returns this list. All entries in @files must exists (but is not required to be files) and should not be used on a directory. Furthermore all entries must be given with absolute path. parse_manifest_fd($fd, $filename) Parses a manifest from $fd, which must be a readable filehandle, and returns a Debian::Javahelper::Manifest. $filename is only used to report parsing errors and should be something that identifies the source of $fd. write_manifest_fd($manifest, $fd, $filename) Writes $manifest to the writable filehandle $fd. $manifest must be a Debian::Javahelper::Manifest. $filename is only used to report errors and should be something that identifies $fd. write_manifest_section_fd($section, $fd, $filename) Writes $section to the writable filehandle $fd. $section must be a Debian::Javahelper::ManifestSection. $filename is only used to report errors and should be something that identifies $fd. NB: Helper - Not exported. slurp_file($file) Reads all lines in $file and returns them as a list. NB: Helper - Not exported. SEE ALSO
Debian::Javahelper::Manifest(3) Debian::Javahelper::ManifestSection(3) AUTHOR
Niels Thykier <niels@thykier.net> COPYRIGHT AND LICENSE
Copyright 2010 by Niels Thykier This module is free software; you may redistribute it and/or modify it under the terms of GNU GPL 2. 0.43 2012-01-10 Debian::Javahelper::Java(3)