Skip to content

Commit

Permalink
Deploying to gh-pages from @ ef0d202 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Oct 16, 2024
1 parent 2f5b596 commit 6877f42
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions jaybird_manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ <h4 id="distribution-maven"><a class="anchor" href="#distribution-maven"></a>1.4
<div class="paragraph">
<p>Groupid: <code>org.firebirdsql.jdbc</code>,<br>
Artifactid: <code>jaybird</code>,<br>
Version: <code>5.0.5.&lt;java&gt;</code> (where <code>&lt;java&gt;</code> is <code>java11</code> or <code>java8</code>)</p>
Version: <code>5.0.6.&lt;java&gt;</code> (where <code>&lt;java&gt;</code> is <code>java11</code> or <code>java8</code>)</p>
</div>
<div class="paragraph">
<p>For example:</p>
Expand All @@ -790,19 +790,19 @@ <h4 id="distribution-maven"><a class="anchor" href="#distribution-maven"></a>1.4
<pre class="prettyprint highlight"><code data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;org.firebirdsql.jdbc&lt;/groupId&gt;
&lt;artifactId&gt;jaybird&lt;/artifactId&gt;
&lt;version&gt;5.0.5.java11&lt;/version&gt;
&lt;version&gt;5.0.6.java11&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
<div class="paragraph">
<p>If you want to use Type 2 support (native or embedded), you need to explicitly include JNA 5.14.0 as a dependency:</p>
<p>If you want to use Type 2 support (native or embedded), you need to explicitly include JNA 5.15.0 as a dependency:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="prettyprint highlight"><code data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;net.java.dev.jna&lt;/groupId&gt;
&lt;artifactId&gt;jna&lt;/artifactId&gt;
&lt;version&gt;5.14.0&lt;/version&gt;
&lt;version&gt;5.15.0&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1452,7 +1452,7 @@ <h4 id="driver-native"><a class="anchor" href="#driver-native"></a>2.2.2. NATIVE
</div>
</div>
<div class="paragraph">
<p>In addition to Jaybird, this requires a native Firebird client library, and JNA 5.14.0 needs to be on the classpath.</p>
<p>In addition to Jaybird, this requires a native Firebird client library, and JNA 5.15.0 needs to be on the classpath.</p>
</div>
<div class="admonitionblock note">
<table>
Expand Down Expand Up @@ -12074,7 +12074,7 @@ <h4 id="jb5-java"><a class="anchor" href="#jb5-java"></a>F.1.1. Java support</h4
</div>
<div class="paragraph">
<p>Given the limited support period for Java 9 and higher versions, we limit support to Java 8, 11, 17 and the most recent LTS version after Java 17 and the latest Java release.
Currently, that means we support Java 8, 11, 17, 21, and 22.</p>
Currently, that means we support Java 8, 11, 17, 21, and 23.</p>
</div>
<div class="admonitionblock note">
<table>
Expand Down Expand Up @@ -12176,7 +12176,7 @@ <h4 id="jb5-spec"><a class="anchor" href="#jb5-spec"></a>F.1.3. Supported Specif
<h4 id="jb5-distribution"><a class="anchor" href="#jb5-distribution"></a>F.1.4. Distribution</h4>
<div class="paragraph">
<p>Jaybird has no required runtime dependencies.
For native or embedded connections, JNA 5.14.0 needs to be on the class path.</p>
For native or embedded connections, JNA 5.15.0 needs to be on the class path.</p>
</div>
<div class="sect4">
<h5 id="jb5-distribution-package"><a class="anchor" href="#jb5-distribution-package"></a>Distribution package</h5>
Expand All @@ -12199,12 +12199,12 @@ <h5 id="jb5-distribution-package"><a class="anchor" href="#jb5-distribution-pack
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>jaybird-5.0.5.&lt;java&gt;.jar</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>jaybird-5.0.6.&lt;java&gt;.jar</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">An archive containing the JDBC driver, the Services API and event management classes.
Where <code>&lt;java&gt;</code> is either <code>java11</code> or <code>java8</code>.</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>lib/jna-5.14.0.jar</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>lib/jna-5.15.0.jar</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Optional dependency, required if you want to use Type 2 native, or embedded protocols</p></td>
</tr>
</tbody>
Expand Down Expand Up @@ -12241,7 +12241,7 @@ <h5 id="jb5-distribution-maven"><a class="anchor" href="#jb5-distribution-maven"
version
</td>
<td class="hdlist2">
<p><code>5.0.5.&lt;java&gt;</code> (where <code>&lt;java&gt;</code> is either <code>java11</code> or <code>java8</code>)</p>
<p><code>5.0.6.&lt;java&gt;</code> (where <code>&lt;java&gt;</code> is either <code>java11</code> or <code>java8</code>)</p>
</td>
</tr>
</table>
Expand All @@ -12254,7 +12254,7 @@ <h5 id="jb5-distribution-maven"><a class="anchor" href="#jb5-distribution-maven"
<pre class="prettyprint highlight"><code data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;org.firebirdsql.jdbc&lt;/groupId&gt;
&lt;artifactId&gt;jaybird&lt;/artifactId&gt;
&lt;version&gt;5.0.5.java11&lt;/version&gt;
&lt;version&gt;5.0.6.java11&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand All @@ -12266,7 +12266,7 @@ <h5 id="jb5-distribution-maven"><a class="anchor" href="#jb5-distribution-maven"
<pre class="prettyprint highlight"><code data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;net.java.dev.jna&lt;/groupId&gt;
&lt;artifactId&gt;jna&lt;/artifactId&gt;
&lt;version&gt;5.14.0&lt;/version&gt;
&lt;version&gt;5.15.0&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -13389,7 +13389,7 @@ <h2 id="license"><a class="anchor" href="#license"></a>Appendix G: License</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-10-13 11:10:43 UTC
Last updated 2024-10-16 14:41:24 UTC
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/run_prettify.min.js"></script>
Expand Down
Binary file modified jaybird_manual.pdf
Binary file not shown.

0 comments on commit 6877f42

Please sign in to comment.