97 lines
6.3 KiB
HTML
97 lines
6.3 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="reference" />
|
|
<meta name="DC.Title" content="SQLJ.UPDATEJARINFO" />
|
|
<meta name="abstract" content="The SQLJ.UPDATEJARINFO updates the CLASS_SOURCE column of the SYSJARCONTENTS catalog table. This procedure is not part of the SQLJ standard but is used by the DB2 UDB for iSeries stored procedure builder." />
|
|
<meta name="description" content="The SQLJ.UPDATEJARINFO updates the CLASS_SOURCE column of the SYSJARCONTENTS catalog table. This procedure is not part of the SQLJ standard but is used by the DB2 UDB for iSeries stored procedure builder." />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljjar.htm" />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljinst.htm" />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljremv.htm" />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljrplc.htm" />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljrcvr.htm" />
|
|
<meta name="DC.Relation" scheme="URI" content="sqljrfc.htm" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="sqljupdt" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>SQLJ.UPDATEJARINFO</title>
|
|
</head>
|
|
<body id="sqljupdt"><a name="sqljupdt"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">SQLJ.UPDATEJARINFO</h1>
|
|
<div><p>The SQLJ.UPDATEJARINFO updates the CLASS_SOURCE column of the SYSJARCONTENTS
|
|
catalog table. This procedure is not part of the SQLJ standard but is used
|
|
by the DB2<sup>®</sup> UDB
|
|
for iSeries™ stored
|
|
procedure builder.</p>
|
|
<div class="section"><h4 class="sectiontitle">Authorization</h4><p>The privilege held by the authorization
|
|
ID of the CALL statement must include at least one of the following for the
|
|
SYSJARCONTENTS catalog table:</p>
|
|
<ul><li>The following system authorities: <ul><li>The SELECT and UPDATEINSERT privileges on the table</li>
|
|
<li>The system authority *EXECUTE on library QSYS2</li>
|
|
</ul>
|
|
</li>
|
|
<li>Administrative authority</li>
|
|
</ul>
|
|
<p>The user running the CALL statement must also have the following authorities:</p>
|
|
<ul><li>Read (*R) access to the JAR file specified in the <em>jar-url</em> parameter.
|
|
Read (*R) access to the JAR file being installed.</li>
|
|
<li>Write, Execute, and Read (*RWX) access to the directory where the JAR
|
|
file is installed. This directory is /QIBM/UserData/OS400/SQLLib/Function/jar/<em>schema</em>,
|
|
where <em>schema</em> is the schema of the <em>jar-id</em>.</li>
|
|
</ul>
|
|
<p>Adopted authority cannot be used for these authorities.</p>
|
|
</div>
|
|
<div class="section"><h4 class="sectiontitle">Syntax</h4><pre> >>-CALL--SQLJ.UPDATEJARINFO--(--<em>'jar-id'</em>--<em>,</em>--<em>'class-id'</em>--<em>,</em>--<em>'jar-url'</em>--)-->
|
|
|
|
>--------------------------------------------------------------><</pre>
|
|
</div>
|
|
<div class="section"><h4 class="sectiontitle">Description</h4><dl><dt class="dlterm"><strong><em>jar-id</em></strong></dt>
|
|
<dd>The JAR identifier in the database that is to be updated.</dd>
|
|
</dl>
|
|
<dl><dt class="dlterm"><strong><em>class-id</em></strong></dt>
|
|
<dd>The package qualified class name of the class to be updated.</dd>
|
|
</dl>
|
|
<dl><dt class="dlterm"><strong><em>jar-url</em></strong></dt>
|
|
<dd>The URL containing the classfile to update the JAR file with. The only
|
|
URL scheme supported is 'file:'.</dd>
|
|
</dl>
|
|
</div>
|
|
<div class="section"><h4 class="sectiontitle">Example</h4><p>The following command is issued from an
|
|
SQL interactive session:</p>
|
|
<pre> CALL SQLJ.UPDATEJARINFO('myproc_jar', 'mypackage.myclass',
|
|
'file:/home/user/mypackage/myclass.class')</pre>
|
|
<p>The
|
|
JAR file associated with the <em>jar-id</em> myproc_jar, is updated with a new
|
|
version of the mypackage.myclass class. The new version of the class is obtained
|
|
from the file /home/user/mypackage/myclass.class. </p>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="sqljjar.htm" title="Both Java stored procedures and Java UDFs can use Java classes that are stored in Java JAR files.">SQLJ procedures that manipulate JAR files</a></div>
|
|
</div>
|
|
<div class="relref"><strong>Related reference</strong><br />
|
|
<div><a href="sqljinst.htm" title="The SQLJ.INSTALL_JAR stored procedure installs a JAR file into the database system. This JAR file can be used in subsequent CREATE FUNCTION and CREATE PROCEDURE statements.">SQLJ.INSTALL_JAR</a></div>
|
|
<div><a href="sqljremv.htm" title="The SQLJ.REMOVE_JAR stored procedure removes a JAR file from the database system.">SQLJ.REMOVE_JAR</a></div>
|
|
<div><a href="sqljrplc.htm" title="">SQLJ.REPLACE_JAR</a></div>
|
|
<div><a href="sqljrcvr.htm" title="The SQLJ.RECOVERJAR procedure takes the JAR file that is stored in the SYSJAROBJECTS catalog and restores it to the /QIBM/UserData/OS400/SQLLib/Function/jar/jarschema/jar_id.jar file.">SQLJ.RECOVERJAR</a></div>
|
|
<div><a href="sqljrfc.htm" title="The SQLJ.REFRESH_CLASSES stored procedure causes the reloading of user defined classes used by Java stored procedures or Java UDFs in the current database connection. This stored procedure must be called by existing database connections to obtain changes made by a call to the SQLJ.REPLACE_JAR stored procedure.">SQLJ.REFRESH_CLASSES</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |