Oracle Rdb7™ Guide to Using the Oracle SQL/Services™ Client API

Total Page:16

File Type:pdf, Size:1020Kb

Oracle Rdb7™ Guide to Using the Oracle SQL/Services™ Client API Oracle Rdb7™ Guide to Using the Oracle SQL/Services™ Client API Release 7.0 Part No. A41981-1 ® Guide to Using the Oracle SQL/Services Client API Release 7.0 Part No. A41981-1 Copyright © 1993, 1996, Oracle Corporation. All rights reserved. This software contains proprietary information of Oracle Corporation; it is provided under a license agreement containing restrictions on use and disclosure and is also protected by copyright law. Reverse engineering of the software is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. Oracle Corporation does not warrant that this document is error free. Restricted Rights Legend Programs delivered subject to the DOD FAR Supplement are ’commercial computer software’ and use, duplication and disclosure of the programs shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement. Otherwise, programs delivered subject to the Federal Acquisition Regulations are ’restricted computer software’ and use, duplication and disclosure of the programs shall be subject to the restrictions in FAR 52.227-14, Rights in Data—General, including Alternate III (June 1987). Oracle Corporation, 500 Oracle Parkway, Redwood City, CA 94065. The programs are not intended for use in any nuclear, aviation, mass transit, medical, or other inherently dangerous applications. It shall be the licensee’s responsibility to take all appropriate fail-safe, back up, redundancy and other measures to ensure the safe use of such applications if the programs are used for such purposes, and Oracle disclaims liability for any damages caused by such use of the programs. Oracle, Secure Network Services, and SQL*Net are registered trademarks of Oracle Corporation, Redwood City, California. Rdb7, Oracle Rdb, Oracle Trace, and Oracle SQL/Services are trademarks of Oracle Corporation, Redwood City, California. All other company or product names are used for identification purposes only, and may be trademarks of their respective owners. Contents Send Us Your Comments ........................................... ix Preface ........................................................... xi Technical Changes and New Features ............................... xv 1 Overview 1.1 Introduction to Oracle SQL/Services . ......................... 1–2 1.1.1 Client Components ....................................... 1–3 1.1.2 Network Components ..................................... 1–4 1.1.3 Server System Components ................................ 1–5 1.2 Supported Client Platforms . ................................. 1–5 1.3 Preparing Programmers to Use Oracle SQL/Services ................ 1–8 1.3.1 What Programmers Must Know to Write Applications ............ 1–8 1.3.2 Reading Path for Programmers ............................. 1–9 1.4 Location of Oracle SQL/Services Error Documentation .............. 1–9 1.5 What System Managers Must Know to Support Oracle SQL/Services . 1–10 2 Developing Oracle SQL/Services Applications 2.1 Introduction to the Dynamic SQL Interface of Oracle Rdb ............ 2–2 2.2 Overview of Dynamic SQL Interface Statements . ................ 2–2 2.2.1 Execution Statements . ................................. 2–2 2.2.2 Result Table Statements . ................................. 2–3 2.3 Using the Dynamic SQL Interface of Oracle Rdb . ................ 2–4 2.3.1 Parameter Markers ...................................... 2–6 2.3.2 Select List Items ........................................ 2–7 2.3.3 Unknown Statements ..................................... 2–7 2.3.4 SQL Descriptor Area (SQLDA or SQLDA2) .................... 2–7 2.3.5 SQL Communications Area (SQLCA) ......................... 2–8 2.4 Overview of Client API Routines ............................... 2–9 iii 2.4.1 Association Routines ..................................... 2–9 2.4.2 SQL Statement Routines .................................. 2–9 2.4.3 Result Table Routines .................................... 2–10 2.4.4 Utility Routines . ...................................... 2–11 2.4.5 Functional Interface Routines .............................. 2–11 2.5 Overview of Data Structures .................................. 2–13 2.6 Developing Applications with the Functional Interface Routines . ..... 2–14 2.7 Building Oracle SQL/Services Application Programs . ............. 2–14 2.7.1 Building Applications on the OpenVMS Operating System . ..... 2–15 2.7.2 Building Applications on the MS Windows Operating System . ..... 2–15 2.7.2.1 Building 16-Bit Applications on MS Windows V3.1 ........... 2–16 2.7.2.2 Building 32-Bit Applications for Windows 95, Windows NT X86, or Windows NT Alpha . .............................. 2–16 2.7.3 Building Applications on the Digital UNIX Operating System . ..... 2–17 2.7.4 Building Applications on the Macintosh Operating System . ..... 2–17 2.7.4.1 Building Applications on the Macintosh Operating System for MPW.............................................. 2–17 2.7.4.2 Building Applications on the Macintosh Operating System for THINK C ........................................... 2–18 2.7.5 Building Applications on the Solaris Operating Systems .......... 2–19 3 Sample Application Guidelines 3.1 Sample Application . ...................................... 3–1 3.2 Building the Sample Application . .............................. 3–2 3.2.1 Building the Sample Application on the OpenVMS Operating System . .............................................. 3–2 3.2.2 Building the Sample Application on MS Windows V3.1 ........... 3–2 3.2.3 Building the Sample Application on Windows NT X86, Windows NT Alpha, or Windows 95 .................................... 3–3 3.2.4 Building the Sample Application on the Digital UNIX Operating System . .............................................. 3–3 3.2.5 Building the Sample Application on the Macintosh Operating System . .............................................. 3–4 3.2.5.1 Building the Sample Application in the MPW Programming Environment . ...................................... 3–4 3.2.5.2 Building the Sample Application in the THINK C Programming Environment . ...................................... 3–4 3.2.6 Building the Sample Application on the Solaris Operating System . .............................................. 3–5 3.3 Running the Sample Application . .............................. 3–5 3.4 Driver Module ............................................. 3–7 3.5 Dynamic Module ........................................... 3–7 iv 3.5.1 Creating an Association . ................................. 3–7 3.5.2 Processing the Dynamic SQL Statement ...................... 3–10 3.5.2.1 Declaring and Allocating SQLDA_ID Identifiers ............. 3–12 3.5.2.2 Executing SQL Statements Using the sqlsrv_execute_immediate API Routine ......................................... 3–13 3.5.2.3 Preparing the SQL Statement . ......................... 3–13 3.5.2.4 Allocating Data and Indicator Variables . ................ 3–14 3.5.2.5 Processing Parameter Markers . ......................... 3–15 3.5.2.6 Testing for SELECT Statements ......................... 3–19 3.5.2.7 Processing a SELECT Statement ......................... 3–19 3.5.2.8 Processing Executable Statements ........................ 3–20 3.5.2.9 Processing Select List Items . ......................... 3–20 3.5.2.10 Error Handling ...................................... 3–24 3.5.2.11 Releasing Prepared Statements . ......................... 3–26 4 Performance Considerations 4.1 Batched Execution . ......................................... 4–1 4.2 Improving Row Fetch Performance ............................. 4–3 4.3 Using Stored Procedures and Compound Statements ............... 4–7 4.4 Reusing SQL Statements ..................................... 4–8 5 Logging for Performance and Debugging 5.1 Enabling and Disabling Logging ............................... 5–1 5.2 Association Logging ......................................... 5–3 5.3 Routine Logging . ......................................... 5–4 5.4 Message Protocol Logging . ................................. 5–6 6 API Routines 6.1 Documentation Format ...................................... 6–1 6.1.1 Routine Name . ......................................... 6–1 6.1.2 Return Values . ......................................... 6–2 6.1.3 C Format Section ........................................ 6–2 6.2 Oracle SQL/Services Data Types ............................... 6–2 6.3 API Routines .............................................. 6–3 6.3.1 Association Routines ..................................... 6–4 sqlsrv_abort ............................................... 6–5 sqlsrv_associate . ......................................... 6–6 sqlsrv_get_associate_info ..................................... 6–13 sqlsrv_release .............................................. 6–16 v 6.3.2 SQL Statement Routines .................................. 6–18 sqlsrv_prepare ............................................. 6–19 sqlsrv_execute_in_out . ...................................... 6–23 sqlsrv_execute_immediate .................................... 6–28 sqlsrv_release_statement ..................................... 6–30 6.3.3 Result Table Routines .................................... 6–32 sqlsrv_declare_cursor . ...................................... 6–33 sqlsrv_open_cursor .......................................... 6–36 sqlsrv_fetch . .............................................. 6–39 sqlsrv_fetch_many .........................................
Recommended publications
  • Openvms Record Management Services Reference Manual
    OpenVMS Record Management Services Reference Manual Order Number: AA-PV6RD-TK April 2001 This reference manual contains general information intended for use in any OpenVMS programming language, as well as specific information on writing programs that use OpenVMS Record Management Services (OpenVMS RMS). Revision/Update Information: This manual supersedes the OpenVMS Record Management Services Reference Manual, OpenVMS Alpha Version 7.2 and OpenVMS VAX Version 7.2 Software Version: OpenVMS Alpha Version 7.3 OpenVMS VAX Version 7.3 Compaq Computer Corporation Houston, Texas © 2001 Compaq Computer Corporation Compaq, AlphaServer, VAX, VMS, the Compaq logo Registered in U.S. Patent and Trademark Office. Alpha, PATHWORKS, DECnet, DEC, and OpenVMS are trademarks of Compaq Information Technologies Group, L.P. in the United States and other countries. UNIX and X/Open are trademarks of The Open Group in the United States and other countries. All other product names mentioned herein may be the trademarks of their respective companies. Confidential computer software. Valid license from Compaq required for possession, use, or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor’s standard commercial license. Compaq shall not be liable for technical or editorial errors or omissions contained herein. The information in this document is provided "as is" without warranty of any kind and is subject to change without notice. The warranties for Compaq products are set forth in the express limited warranty statements accompanying such products. Nothing herein should be construed as constituting an additional warranty.
    [Show full text]
  • Oracle Database Installation Guide 10G Release 2 (10.2)
    Oracle®[1] Database Installation Guide 11g Release 2 (11.2) for HP OpenVMS Itanium E56668-01 June 2015 Oracle Database Installation Guide, 11g Release 2 (11.2) for HP OpenVMS Itanium E56668-01 Copyright © 2008, 2015, Oracle and/or its affiliates. All rights reserved. Primary Author: Nisha Sridhar Contributors: Dave Hayter, Gary Huffman, Marc Noel, Chris Schuetz, David Miller, Kevin Duffy, Steve Holck, Grant Hayden, Gary Tate This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • Oracle Rdb Extension for OEM 9I Release V7.1.0.0
    Rdb-OEM Agent Installation Guide 7/16/03 2:02 PM Oracle Rdb Extension for OEM 9i Release V7.1.0.0 Oracle Rdb Extension for OEM 9i Rdb-OEM Installation Guide for Oracle Intelligent Agent Release 7.1.0.0 for Oracle Enterprise Managers on Windows NT, Windows 2000, Sun Solaris OS (SPARC) for Oracle Intelligent Agents on OpenVMS for Alpha June 2003 This readme provides information on how to install the Oracle Rdb Extension for the Oracle Intelligent Agent on OpenVMS for Alpha systems using the Oracle Rdb Server CD media. The Oracle Enterprise Manager 9i is a 3-tier management framework consisting of Oracle Enterprise Manager Console Oracle Management Server Oracle Intelligent Agent Together, they can be used to Administer the complete Oracle environment, including databases, iAS servers, applications, and services. Diagnose, modify, and tune multiple Oracle databases. Schedule tasks on multiple systems at varying time intervals. Monitor Oracle database conditions throughout the network. Administer multiple network nodes and services from many locations. Share tasks with other administrators. Group related services together to facilitate administration tasks. Launch integrated Oracle and third-party tools. In order to facilitate the management of Oracle Rdb databases through the management framework, an additional installation is required at each tier. Each of these additional installations are described in this readme. The top tier consists of the Oracle Enterprise Manager Console. The Console is a GUI that allows you to interface into the management framework. Via the Console, you may interact with the Oracle Management Server and the Oracle Intelligent Agent to perform all the functions listed above.
    [Show full text]
  • Connx 14.0 Release Notes October 7, 2019
    ConnX 14.0 Release Notes October 7, 2019 Software AG Table of Contents ConnX 14.0 Release Notes ................................................................................................ 3 Overview .......................................................................................................................... 3 ConnX Architecture on Windows .................................................................................... 4 ConnX Architecture on UNIX ........................................................................................... 5 ConnX Architecture (ODBC/JDBC/OLEDB/.NET Provider) ............................................... 6 ConnX Client Engine for Windows ................................................................................... 6 ConnX Client Engine for UNIX .......................................................................................... 6 ConnX Data Dictionary ..................................................................................................... 6 ConnX Server ................................................................................................................... 6 ConnX JDBC Thin Client ................................................................................................... 6 ConnX JDBC Server .......................................................................................................... 6 ConnX JDBC Router .......................................................................................................... 7 ConnX DataSync ..............................................................................................................
    [Show full text]
  • Software Product Description and Quickspecs
    VSI OpenVMS Alpha Version 8.4-2L2 Operating System DO-DVASPQ-01A Software Product Description and QuickSpecs PRODUCT NAME: VSI OpenVMS Alpha Version 8.4-2L2 DO-DVASPQ-01A This SPD and QuickSpecs describes the VSI OpenVMS Alpha Performance Release Operating System software, Version 8.4-2L2 (hereafter referred to as VSI OpenVMS Alpha V8.4-2L2). DESCRIPTION OpenVMS is a general purpose, multiuser operating system that runs in both production and development environments. VSI OpenVMS Alpha Version 8.4-2L2 is the latest release of the OpenVMS Alpha computing environment by VMS Software, Inc (VSI). VSI OpenVMS Alpha V8.4-2L2 is compiled to take advantage of architectural features such as byte and word memory reference instructions, and floating-point improvements, which are available only in HPE AlphaServer EV6 or later processors. This optimized release improves performance by taking advantage of faster hardware-based instructions that were previously emulated in software. NOTE: VSI OpenVMS Alpha V8.4-2L2 does not work on, and is not supported on, HPE AlphaServer pre-EV6 systems. OpenVMS Alpha supports HPE’s AlphaServer series computers. OpenVMS software supports industry standards, facilitating application portability and interoperability. OpenVMS provides symmetric multiprocessing (SMP) support for multiprocessing systems. The OpenVMS operating system can be tuned to perform well in a wide variety of environments. This includes combinations of compute-intensive, I/O-intensive, client/server, real-time, and other environments. Actual system performance depends on the type of computer, available physical memory, and the number and type of active disk and tape drives. The OpenVMS operating system has well-integrated networking, distributed computing, client/server, windowing, multi-processing, and authentication capabilities.
    [Show full text]
  • Openvms: an Introduction
    The Operating System Handbook or, Fake Your Way Through Minis and Mainframes by Bob DuCharme VMS Table of Contents Chapter 7 OpenVMS: An Introduction.............................................................................. 7.1 History..........................................................................................................................2 7.1.1 Today........................................................................................................................3 7.1.1.1 Popular VMS Software..........................................................................................4 7.1.2 VMS, DCL................................................................................................................4 Chapter 8 Getting Started with OpenVMS........................................................................ 8.1 Starting Up...................................................................................................................7 8.1.1 Finishing Your VMS Session...................................................................................7 8.1.1.1 Reconnecting..........................................................................................................7 8.1.2 Entering Commands..................................................................................................8 8.1.2.1 Retrieving Previous Commands............................................................................9 8.1.2.2 Aborting Screen Output.........................................................................................9
    [Show full text]
  • Openvms Security
    OpenVMS Security Presented by Paul Williams PARSEC Group 999 18th Street, Suite 1725 Denver, CO 80202 www.parsec.com | 888-4-PARSEC To Download this Presentation, please visit: http://www.parsec.com/public/openvmssecurity.pdf To E-mail Paul [email protected] www.parsec.com | 888-4-PARSEC Outline • OpenVMS Security Design • Physical Security • Object Security • UIC/ACL Security • User Access • Break-in Detection • Network and Internet Considerations • Encrypted Network Communication • Kerberos • Secure Socket Layer (SSL) Goals • Discuss the important points and consideration of OpenVMS Security • Concentrate on the mechanics and mechanisms of OpenVMS features. • Show how OpenVMS is one of the most secure operating systems on the market. OpenVMS Security Design • Security was designed into OpenVMS since V1.0 • Many different levels of security in OpenVMS Physical Security Object Security User Management Network Security • Has never had a virus Physical Security • System • System Console • Storage devices and media System Disk Data and Database Volumes Backups • Network devices and media Physical Security: System • Increase system reliability through restricted access Prevent intentional tampering and outage Prevent outage due to accidents • Prevent Front Panel Access Halts Reset/initializations Power switch/source Power on action settings (VAX) switch Physical Security: Console • Can be a big security hole for OpenVMS Anyone with physical access to the console can break into OpenVMS buy getting into the SYSBOOT utility. Then OpenVMS can be broken into: Buy redirecting startup Buy changing system parameters Physical Security: Getting to SYSBOOT on the Integrity Console Example • On the Integrity shutdown to the EFI Boot Manager and select the EFI Shell and create a alias.
    [Show full text]
  • Getting Even More Grip on Your Security with Pointsecure Or
    OpenVMS and Security getting even more grip on your security with Pointsecure or NDC Gerrit Woertman VSI Professional Services Alliance member VSI OpenVMS trainer EMEA & VSI OpenVMS Ambassador [email protected] www.vmsconsultancy.com Agenda • OpenVMS and Security • EU security laws to report security issues • Non‐HPE/VSI Security packages • Pointsecure – PointAudit – System Detective • Networking Dynamics Corporation (NDC) – Peek & Spy – KEY Capture – Assassin • Questions OpenVMS and Security ‐ 1 • OpenVMS – secure by design • No viruses • One of the first to become US DoD C2‐rating • Declared “Cool and Unhackable” at 2001 DefCon9 as described in 4AA0‐2896ENW.pdf (HP, 11/2005) Alpha OpenVMS with the help of Pointsecure System Detective OpenVMS and Security ‐ 2 • OpenVMS has got optional security solutions – OpenSSL (Secure Socket Layer) https://www.openssl.org/ – Common Data Security Architecture (CDSA) – Kerberos • Everything fine? Seems so, but there is still need for more and better implementation – On VSI’s research list OpenVMS and Security – 3 • OpenVMS ‐ Linux – Windows • With 100% OpenVMS no problems – fine – That’s not real; today’s softwarestacks complex – Splendid isolation? • OpenSource – is that safe? ? OpenVMS and Security – 4 • From http://vmssoftware.com/products.html Unmatched Security Compare OpenVMS' security vulnerability record against other operating systems at CVE Details: http://www.cvedetails.com. The following are direct links to reports for OpenVMS, Linux and Windows: • OpenVMS http://www.cvedetails.com/product/4990/HP‐Openvms.html?vendor_id=10
    [Show full text]
  • Políticas De Soporte Técnico De Software De Oracle
    Políticas de Soporte Técnico de Software de Oracle Fecha de Entrada en Vigencia: 02 de abril de 2021 Oracle Software Technical Support Policies: 02-April-2021 Página 1 de 42 Contenido 1. Descripción general 4 2. Términos del Soporte 4 Tarifas de Soporte Técnico 4 Período de Soporte 5 Conjunto de Licencias 5 Niveles de Servicio Equivalentes 6 Reinstalación del Soporte Técnico de Oracle 6 Fijación de Precios después de la Reducción de Licencias o del Nivel de Soporte 7 Paquetes de Aplicaciones Personalizados 7 Programas Sin Soporte 7 Contactos Técnicos 8 Actualizaciones de Programas 8 3. Soporte De Por Vida 9 4. Niveles de Soporte Técnico de Oracle 13 Licencia de Actualización de Programas y Soporte 13 Soporte Extendido 15 Soporte de Mantenimiento 16 Soporte Premier y de Mantenimiento para el Software de Oracle Communications Network 19 Soporte de Software y Soporte de Mantenimiento para Oracle Communications Network 20 5. Servicios de Soporte Adicionales Disponibles para la Compra 22 Paquete de Soporte para Incidentes en el Servidor 22 Soporte para Herramientas de Desarrollo Oracle Java 23 Soporte para Herramientas de Oracle Developer Studio 23 Soporte para Oracle Application Development Framework Essentials 23 Soporte para Java SE y Soporte para Java SE para Proveedores de Software Independientes 24 Soporte de Desarrollo para Oracle Java Embedded y Soporte de Desarrollo para Oracle Java Embedded Suite 24 Soporte para Oracle Solaris 10 Container 25 Soporte para NoSQL Database Community Edition 25 Paquetes de Solicitudes de Servicio 25
    [Show full text]
  • Guide to Openvms Performance Management
    Guide to OpenVMS Performance Management Order Number: AA–PV5XA–TE May 1993 This manual is a conceptual and tutorial guide for experienced users responsible for optimizing performance on OpenVMS systems. Revision/Update Information: This manual supersedes the Guide to VMS Performance Management, Version 5.2. Software Version: OpenVMS VAX Version 6.0 Digital Equipment Corporation Maynard, Massachusetts May 1993 Digital Equipment Corporation makes no representations that the use of its products in the manner described in this publication will not infringe on existing or future patent rights, nor do the descriptions contained in this publication imply the granting of licenses to make, use, or sell equipment or software in accordance with the description. Possession, use, or copying of the software described in this publication is authorized only pursuant to a valid written license from Digital or an authorized sublicensor. © Digital Equipment Corporation 1993. All rights reserved. The postpaid Reader’s Comments forms at the end of this document request your critical evaluation to assist in preparing future documentation. The following are trademarks of Digital Equipment Corporation: ACMS, ALL–IN–1, Bookreader, CI, DBMS, DECnet, DECwindows, Digital, MicroVAX, OpenVMS, PDP–11, VAX, VAXcluster, VAX DOCUMENT, VMS, and the DIGITAL logo. All other trademarks and registered trademarks are the property of their respective holders. ZK4521 This document was prepared using VAX DOCUMENT Version 2.1. Contents Preface ............................................................ ix 1 Introduction to Performance Management 1.1 Knowing Your Workload ....................................... 1–2 1.1.1 Workload Management .................................... 1–3 1.1.2 Workload Distribution ..................................... 1–4 1.1.3 Code Sharing ............................................ 1–4 1.2 Evaluating User Complaints .
    [Show full text]
  • GSI OPERATING SOFTWARE MIGRATION Openvms to Linux
    MOX02 Proceedings of PCaPAC08, Ljubljana, Slovenia GSI OPERATING SOFTWARE MIGRATION OpenVMS TO Linux R. Huhmann, G. Fr¨ohlich, S. J¨ulicher, V. RW Schaa, GSI, Darmstadt, Germany Abstract TECHNICAL ASPECTS This section covers main aspects of porting VMS spe- The current operating software at GSI has been devel- cific Fortran software to Linux. Due to the limited size of oped over a period of more than two decades using Open- this paper it is impossible to mention all aspects or to go in VMS now on Alpha-Workstations. Parts of this complex much detail. software will have to be integrated within the control sys- tem of the new FAIR accelerator. To ease future mainte- nance a migration to Linux is considered a precondition. DEC Fortran Extensions For porting to Linux a set of libraries and tools have been DEC Fortran was established as a quasi standard which developed covering the necessary OpenVMS (referred to as exceeds and improves the Fortran77 specifications. It cov- VMS in the paper) system functionality. The interoperabil- ers a lot of compiler directives and language extensions to ity with FAIR controls applications is achieved by adding increase possibilities for Fortran programmers. An exam- a simple but generic middle-ware interface to access the ple is the type STRUCTURE to create composed data objects ported software in a service-like manner from modern Java like struct in C. Other important examples are the com- applications. piler directives %REF, %LOC, %VAL which enable the For- tran programmer to use pointers. Luckily most of the ex- tensions are supported by main Fortran compiler manufac- GENERAL ASPECTS turers.
    [Show full text]
  • VSI Openvms Version 8.4-1H1 Installation and Upgrade Manual
    VSI OpenVMS Version 8.4-1H1 Installation and Upgrade Manual VSI OpenVMS Version 8.4-1H1 Installation and Upgrade Manual: Software Version: VSI OpenVMS Version 8.4-1H1 for HP Integrity Servers Publication date 5-May-2015 - Release Version 1.0 Copyright © 2015 VMS Software, Inc., (VSI), Bolton Massachusetts, USA Legal Notice Confidential computer software. Valid license from VSI required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for VSI products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. VSI shall not be liable for technical or editorial errors or omissions contained herein. HP, HP Integrity, HP Alpha, Proliant and Superdome are trademarks or registered trademarks of Hewlett Packard Development Company, L.P. Intel, Itanium and IA64 are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. Java, the coffee cup logo, and all Java based marks are trademarks or registered trademarks of Oracle Corporation in the United States or other countries. Kerberos is a trademark of the Massachusetts Institute of Technology. Microsoft, Windows, Windows-NT and Microsoft XP are U.S. registered trademarks of Microsoft Corporation. Microsoft Vista is either a registered trademark or trademark of Microsoft Corporation in the United States and/or other countries.
    [Show full text]