组织ID: |
com.healthmarketscience.jackcess |
项目ID: |
jackcess |
版本: |
1.2.9 |
最后修改时间: |
2018-08-23 09:53:33 |
包类型: |
jar |
标题: |
Jackcess |
描述: |
A pure Java library for reading from and writing to MS Access databases. |
大小: |
675.27KB |
|
Maven引入代码: |
<dependency>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
<version>1.2.9</version>
</dependency>
|
Gradle引入代码: |
com.healthmarketscience.jackcess:jackcess:1.2.9
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId>
<version>1.0.12</version>
</parent>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
<name>Jackcess</name>
<description>A pure Java library for reading from and writing to MS Access databases.</description>
<version>1.2.9</version>
<url>http://jackcess.sf.net</url>
<inceptionYear>2005</inceptionYear>
<developers>
<developer>
<name>Tim McCune</name>
<id>javajedi</id>
<email>javajedi@users.sf.net</email>
<timezone>-5</timezone>
</developer>
<developer>
<name>James Ahlborn</name>
<id>jahlborn</id>
<email>jahlborn@users.sf.net</email>
<organization>Dell Boomi</organization>
<timezone>-5</timezone>
</developer>
<developer>
<name>Rob Di Marco</name>
<id>robdimarco</id>
<timezone>-5</timezone>
</developer>
<developer>
<name>Dan Rollo</name>
<id>bhamail</id>
<email>bhamail@users.sf.net</email>
<organization>Composite Software, Inc.</organization>
<timezone>-5</timezone>
</developer>
</developers>
<issueManagement>
<system>SourceForge2</system>
<url>http://sourceforge.net/p/jackcess/bugs/</url>
</issueManagement>
<scm>
<connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</connection>
<!-- read/write svn connection -->
<developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</developerConnection>
<url>http://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</url>
</scm>
<build>
<defaultGoal>install</defaultGoal>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>test/src/java</testSourceDirectory>
<resources>
<resource>
<directory>src/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>test/src/resources</directory>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<argLine>-Xmx256M -server</argLine>
<systemProperties>
<property>
<name>log4j.configuration</name>
<value>log4j_test.properties</value>
</property>
<property>
<name>com.healthmarketscience.jackcess.bigIndex</name>
<value>${jackcess.bigIndex}</value>
</property>
<property>
<name>com.healthmarketscience.jackcess.testFormats</name>
<value>${jackcess.testFormats}</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<excludes>
<exclude>com/healthmarketscience/jackcess/scsu/**</exclude>
</excludes>
</instrumentation>
</configuration>
<executions>
<execution>
<id>clean</id>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<smtpHost>localhost</smtpHost>
<toAddresses>
<toAddress>jackcess-users@lists.sourceforge.net</toAddress>
</toAddresses>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
<executions>
<execution>
<id>build-test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<archive combine.self="override">
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.7</version>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<links>
<list>http://download.oracle.com/javase/1.5.0/docs/api</list>
<list>http://download.oracle.com/javaee/5/api</list>
</links>
<source>1.5</source>
<excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
<show>public</show>
<stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
<tags>
<tag>
<name>usage</name>
<placement>a</placement>
<head>Usage:</head>
</tag>
</tags>
<taglets>
<taglet>
<tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
<tagletArtifact>
<groupId>net.sourceforge.taglets</groupId>
<artifactId>taglets</artifactId>
<version>2.0.3</version>
</tagletArtifact>
</taglet>
</taglets>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>taglets</id>
<name>Taglets</name>
<url>http://maven.geotoolkit.org/</url>
<layout>default</layout>
</repository>
</repositories>
<distributionManagement>
<site>
<id>jackcess-build-site</id>
<url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
</site>
</distributionManagement>
<properties>
<jackcess.bigIndex>true</jackcess.bigIndex>
<jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type.class
com.healthmarketscience.jackcess.MemFileChannel$1.class
com/healthmarketscience/jackcess/empty2007.accdb
com.healthmarketscience.jackcess.Column$ComplexTypeAutoNumberGenerator.class
com.healthmarketscience.jackcess.PropertyMaps$1.class
com.healthmarketscience.jackcess.PropertyMaps.class
com.healthmarketscience.jackcess.Joiner$1.class
com.healthmarketscience.jackcess.ImportFilter.class
com.healthmarketscience.jackcess.IndexCursor$IndexPosition.class
com.healthmarketscience.jackcess.UsageMap$ReferenceHandler.class
com.healthmarketscience.jackcess.ErrorHandler.class
com.healthmarketscience.jackcess.TempPageHolder.class
com.healthmarketscience.jackcess.NullMask.class
com.healthmarketscience.jackcess.ExportUtil.class
com.healthmarketscience.jackcess.ByteUtil$ByteStream.class
com.healthmarketscience.jackcess.SimpleImportFilter.class
com.healthmarketscience.jackcess.IndexData$ReadOnlyColumnDescriptor.class
com.healthmarketscience.jackcess.IndexBuilder$1.class
com.healthmarketscience.jackcess.Cursor$ColumnMatchIterator.class
com.healthmarketscience.jackcess.IndexData$IntegerColumnDescriptor.class
com.healthmarketscience.jackcess.IndexData$Entry.class
com.healthmarketscience.jackcess.Cursor$3.class
com/healthmarketscience/jackcess/index_codes_gen.txt
com.healthmarketscience.jackcess.IndexPageCache$DataPageMain.class
com.healthmarketscience.jackcess.JetFormat$PossibleFileFormats.class
com.healthmarketscience.jackcess.Column.class
com/healthmarketscience/jackcess/index_codes_ext_genleg.txt
com.healthmarketscience.jackcess.BigIndexData.class
com.healthmarketscience.jackcess.RowFilter$1.class
com.healthmarketscience.jackcess.Cursor.class
com.healthmarketscience.jackcess.IndexPageCache$EntryListView.class
com.healthmarketscience.jackcess.PropertyMap.class
com.healthmarketscience.jackcess.GeneralIndexCodes$Codes.class
com/healthmarketscience/jackcess/index_codes_genleg.txt
com.healthmarketscience.jackcess.DataType.class
com.healthmarketscience.jackcess.IndexData$EntryCursor.class
com.healthmarketscience.jackcess.Column$UnsupportedAutoNumberGenerator.class
com.healthmarketscience.jackcess.Database$1.class
com.healthmarketscience.jackcess.IndexData$EntryCursor$ReverseDirHandler.class
com.healthmarketscience.jackcess.Table$RowStateStatus.class
com.healthmarketscience.jackcess.TableCreator.class
com.healthmarketscience.jackcess.Database$TableIterator.class
com.healthmarketscience.jackcess.ColumnMatcher.class
com.healthmarketscience.jackcess.IndexData$LegacyFixedPointColumnDescriptor.class
com.healthmarketscience.jackcess.PropertyMap$1.class
com.healthmarketscience.jackcess.Cursor$Savepoint.class
com.healthmarketscience.jackcess.Database$TableFinder.class
com.healthmarketscience.jackcess.Cursor$RowMatchIterator.class
com.healthmarketscience.jackcess.TempBufferHolder$1.class
com.healthmarketscience.jackcess.UsageMap$Handler.class
com.healthmarketscience.jackcess.Table$ColumnOrder.class
com.healthmarketscience.jackcess.JetFormat$Jet12Format.class
com.healthmarketscience.jackcess.Database$LinkedTableInfo.class
com.healthmarketscience.jackcess.RowFilter$3.class
com.healthmarketscience.jackcess.RowId$Type.class
com.healthmarketscience.jackcess.PropertyMaps$Handler.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$UnprintableExtCharHandler.class
com.healthmarketscience.jackcess.Table$RowState.class
com/healthmarketscience/jackcess/log4j.properties
com.healthmarketscience.jackcess.RowFilter$FilterIterable.class
com.healthmarketscience.jackcess.TempBufferHolder$NoneTempBufferHolder.class
com.healthmarketscience.jackcess.Column$RawData.class
com.healthmarketscience.jackcess.Joiner.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$2.class
com.healthmarketscience.jackcess.Table.class
com.healthmarketscience.jackcess.SimpleIndexData.class
com.healthmarketscience.jackcess.Cursor$ScanPosition.class
com.healthmarketscience.jackcess.IndexCursor$ForwardIndexDirHandler.class
com.healthmarketscience.jackcess.Cursor$TableScanCursor$ForwardScanDirHandler.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$UnprintableCharHandler.class
com.healthmarketscience.jackcess.RowId.class
com.healthmarketscience.jackcess.Cursor$TableScanCursor$ScanDirHandler.class
com.healthmarketscience.jackcess.IndexPageCache$DataPageExtra.class
com.healthmarketscience.jackcess.Column$NumericInfo.class
com.healthmarketscience.jackcess.JetFormat$Jet4Format.class
com.healthmarketscience.jackcess.Cursor$Position.class
com.healthmarketscience.jackcess.IndexPageCache$1.class
com.healthmarketscience.jackcess.TableBuilder.class
com.healthmarketscience.jackcess.CodecProvider.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$1.class
com.healthmarketscience.jackcess.DefaultCodecProvider.class
com.healthmarketscience.jackcess.MemFileChannel.class
com.healthmarketscience.jackcess.DefaultCodecProvider$UnsupportedHandler.class
com.healthmarketscience.jackcess.ImportUtil.class
com.healthmarketscience.jackcess.PageChannel.class
com.healthmarketscience.jackcess.ExportUtil$Builder.class
com.healthmarketscience.jackcess.DatabaseBuilder.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$3.class
com.healthmarketscience.jackcess.RowFilter$2.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$CharHandler.class
com.healthmarketscience.jackcess.Cursor$TableScanCursor.class
com.healthmarketscience.jackcess.Column$1.class
com.healthmarketscience.jackcess.Database$3.class
com.healthmarketscience.jackcess.IndexData$FloatingPointColumnDescriptor.class
com.healthmarketscience.jackcess.PropertyMap$Property.class
com.healthmarketscience.jackcess.IndexData$ColumnDescriptor.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$1.class
com.healthmarketscience.jackcess.ExportFilter.class
com.healthmarketscience.jackcess.IndexData$DataPage.class
com.healthmarketscience.jackcess.IndexData$GenLegTextColumnDescriptor.class
com.healthmarketscience.jackcess.Table$2.class
com.healthmarketscience.jackcess.Index.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$4.class
com.healthmarketscience.jackcess.IndexCursor.class
com.healthmarketscience.jackcess.Column$DateExt.class
com.healthmarketscience.jackcess.IndexPageCache.class
com.healthmarketscience.jackcess.TableCreator$IndexState.class
com.healthmarketscience.jackcess.IndexCursor$1.class
com.healthmarketscience.jackcess.Database$DefaultTableFinder.class
com.healthmarketscience.jackcess.IndexData$2.class
com.healthmarketscience.jackcess.Database$TableInfo.class
com.healthmarketscience.jackcess.Cursor$RowIterator.class
com.healthmarketscience.jackcess.Cursor$TableScanCursor$ReverseScanDirHandler.class
com.healthmarketscience.jackcess.DefaultCodecProvider$DummyHandler.class
com.healthmarketscience.jackcess.PageTypes.class
com.healthmarketscience.jackcess.Column$GuidAutoNumberGenerator.class
com.healthmarketscience.jackcess.complex.ComplexColumnInfo$ComplexValueImpl.class
com.healthmarketscience.jackcess.complex.VersionHistoryColumnInfo.class
com.healthmarketscience.jackcess.complex.UnsupportedColumnInfo.class
com.healthmarketscience.jackcess.complex.ComplexValue.class
com.healthmarketscience.jackcess.complex.AttachmentColumnInfo.class
com.healthmarketscience.jackcess.complex.AttachmentColumnInfo$1.class
com.healthmarketscience.jackcess.complex.MultiValueColumnInfo$1.class
com.healthmarketscience.jackcess.complex.UnsupportedColumnInfo$1.class
com.healthmarketscience.jackcess.complex.Version.class
com.healthmarketscience.jackcess.complex.SingleValue.class
com.healthmarketscience.jackcess.complex.AttachmentColumnInfo$AttachmentImpl.class
com.healthmarketscience.jackcess.complex.VersionHistoryColumnInfo$1.class
com.healthmarketscience.jackcess.complex.ComplexValueForeignKey.class
com.healthmarketscience.jackcess.complex.UnsupportedColumnInfo$UnsupportedValueImpl.class
com.healthmarketscience.jackcess.complex.Attachment.class
com.healthmarketscience.jackcess.complex.ComplexDataType.class
com.healthmarketscience.jackcess.complex.UnsupportedValue.class
com.healthmarketscience.jackcess.complex.VersionHistoryColumnInfo$VersionImpl.class
com.healthmarketscience.jackcess.complex.MultiValueColumnInfo$SingleValueImpl.class
com.healthmarketscience.jackcess.complex.MultiValueColumnInfo.class
com.healthmarketscience.jackcess.complex.ComplexColumnInfo.class
com.healthmarketscience.jackcess.SimpleColumnMatcher.class
com.healthmarketscience.jackcess.query.Query$Row.class
com.healthmarketscience.jackcess.query.Query$2.class
com.healthmarketscience.jackcess.query.Query$4.class
com.healthmarketscience.jackcess.query.AppendQuery$1.class
com.healthmarketscience.jackcess.query.UpdateQuery.class
com.healthmarketscience.jackcess.query.CrossTabQuery.class
com.healthmarketscience.jackcess.query.Query$Type.class
com.healthmarketscience.jackcess.query.SelectQuery.class
com.healthmarketscience.jackcess.query.AppendQuery.class
com.healthmarketscience.jackcess.query.BaseSelectQuery$1.class
com.healthmarketscience.jackcess.query.Query$AppendableList.class
com.healthmarketscience.jackcess.query.BaseSelectQuery$2.class
com.healthmarketscience.jackcess.query.Query$RowFormatter.class
com.healthmarketscience.jackcess.query.Query$Join.class
com.healthmarketscience.jackcess.query.Query.class
com.healthmarketscience.jackcess.query.UnionQuery.class
com.healthmarketscience.jackcess.query.BaseSelectQuery.class
com.healthmarketscience.jackcess.query.UpdateQuery$1.class
com.healthmarketscience.jackcess.query.Query$UnknownQuery.class
com.healthmarketscience.jackcess.query.Query$1.class
com.healthmarketscience.jackcess.query.Query$5.class
com.healthmarketscience.jackcess.query.Query$RowFilter.class
com.healthmarketscience.jackcess.query.DeleteQuery.class
com.healthmarketscience.jackcess.query.MakeTableQuery.class
com.healthmarketscience.jackcess.query.Query$3.class
com.healthmarketscience.jackcess.query.QueryFormat.class
com.healthmarketscience.jackcess.query.DataDefinitionQuery.class
com.healthmarketscience.jackcess.query.PassthroughQuery.class
com.healthmarketscience.jackcess.Database$FileFormat.class
com.healthmarketscience.jackcess.SimpleIndexData$SimpleDataPage.class
com.healthmarketscience.jackcess.PropertyMaps$Handler$BooleanPropColumn.class
com.healthmarketscience.jackcess.IndexPageCache$CacheDataPage.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$6.class
com.healthmarketscience.jackcess.IndexData$GenTextColumnDescriptor.class
com.healthmarketscience.jackcess.SimpleExportFilter.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$Type$5.class
com.healthmarketscience.jackcess.IndexData$GuidColumnDescriptor.class
com.healthmarketscience.jackcess.scsu.Compress.class
com.healthmarketscience.jackcess.scsu.SCSU.class
com.healthmarketscience.jackcess.scsu.Debug.class
com.healthmarketscience.jackcess.scsu.IllegalInputException.class
com.healthmarketscience.jackcess.scsu.EndOfOutputException.class
com.healthmarketscience.jackcess.scsu.Expand.class
com.healthmarketscience.jackcess.scsu.EndOfInputException.class
com.healthmarketscience.jackcess.UnsupportedCodecException.class
com/healthmarketscience/jackcess/empty2010.accdb
com.healthmarketscience.jackcess.JetFormat$MSISAMFormat.class
com.healthmarketscience.jackcess.JetFormat$CodecType.class
com/healthmarketscience/jackcess/empty2003.mdb
com.healthmarketscience.jackcess.IndexData$FixedPointColumnDescriptor.class
com.healthmarketscience.jackcess.ByteUtil.class
com.healthmarketscience.jackcess.TempBufferHolder$Type.class
com.healthmarketscience.jackcess.JetFormat.class
com.healthmarketscience.jackcess.IndexBuilder.class
com.healthmarketscience.jackcess.Database$FallbackTableFinder.class
com.healthmarketscience.jackcess.JetFormat$Jet3Format.class
com.healthmarketscience.jackcess.MemFileChannel$ReadOnlyChannel.class
com.healthmarketscience.jackcess.Cursor$2.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes$InternationalCharHandler.class
com.healthmarketscience.jackcess.Column$AutoNumberGenerator.class
com.healthmarketscience.jackcess.Index$ForeignKeyReference.class
com.healthmarketscience.jackcess.UsageMap$1.class
com.healthmarketscience.jackcess.TempBufferHolder.class
com.healthmarketscience.jackcess.Database$2.class
com.healthmarketscience.jackcess.LinkResolver.class
com.healthmarketscience.jackcess.Database$WeakTableReference.class
com.healthmarketscience.jackcess.JetFormat$Jet14Format.class
com.healthmarketscience.jackcess.GeneralIndexCodes.class
com.healthmarketscience.jackcess.Cursor$Id.class
com.healthmarketscience.jackcess.IndexBuilder$Column.class
com.healthmarketscience.jackcess.ReplacementErrorHandler.class
com.healthmarketscience.jackcess.Table$RowStatus.class
com.healthmarketscience.jackcess.UsageMap.class
com.healthmarketscience.jackcess.RowFilter$FilterIterable$1.class
com.healthmarketscience.jackcess.Cursor$DirHandler.class
com.healthmarketscience.jackcess.GeneralLegacyIndexCodes.class
com.healthmarketscience.jackcess.Table$1.class
com.healthmarketscience.jackcess.PropertyMaps$Handler$PropColumn.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
commons-lang-2.0.jar
/commons-lang/commons-lang/2.0
查看commons-lang所有版本文件
commons-logging-1.0.3.jar
/commons-logging/commons-logging/1.0.3
查看commons-logging所有版本文件
log4j-1.2.7.jar
/log4j/log4j/1.2.7
查看log4j所有版本文件
junit-4.0.jar
/junit/junit/4.0
查看junit所有版本文件
|