<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.database.vendors.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'book.ibm-db2.php',
    1 => 'IBM DB2',
    2 => 'IBM DB2, Cloudscape and Apache Derby',
  ),
  'up' => 
  array (
    0 => 'refs.database.vendors.php',
    1 => 'Anbieterspezifische Datenbankerweiterungen',
  ),
  'prev' => 
  array (
    0 => 'function.ibase-wait-event.php',
    1 => 'ibase_wait_event',
  ),
  'next' => 
  array (
    0 => 'ibm-db2.setup.php',
    1 => 'Installation/Konfiguration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ibm_db2/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.ibm-db2.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.ibm-db2" class="book">
 
 <h1 class="title">IBM DB2, Cloudscape and Apache Derby</h1>
 

 
 <div id="intro.ibm-db2" class="preface">
  <h1 class="title">Einführung</h1>
  <p class="simpara">
   These functions enable you to access IBM DB2 Universal Database, IBM
   Cloudscape, and Apache Derby databases using the DB2 Call Level Interface
   (DB2 CLI).
  </p>
 </div>
 

 




 






 







<ul class="chunklist chunklist_book"><li><a href="ibm-db2.setup.php">Installation/Konfiguration</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="ibm-db2.requirements.php">Anforderungen</a></li><li><a href="ibm-db2.installation.php">Installation</a></li><li><a href="ibm-db2.configuration.php">Laufzeit-Konfiguration</a></li><li><a href="ibm-db2.resources.php">Ressource-Typen</a></li></ul></li><li><a href="ibm-db2.constants.php">Vordefinierte Konstanten</a></li><li><a href="ref.ibm-db2.php">IBM DB2 Funktionen</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.db2-autocommit.php">db2_autocommit</a> — Returns or sets the AUTOCOMMIT state for a database connection</li><li><a href="function.db2-bind-param.php">db2_bind_param</a> — Binds a PHP variable to an SQL statement parameter</li><li><a href="function.db2-client-info.php">db2_client_info</a> — Returns an object with properties that describe the DB2 database client</li><li><a href="function.db2-close.php">db2_close</a> — Closes a database connection</li><li><a href="function.db2-column-privileges.php">db2_column_privileges</a> — Returns a result set listing the columns and associated privileges for a table</li><li><a href="function.db2-columns.php">db2_columns</a> — Returns a result set listing the columns and associated metadata for a table</li><li><a href="function.db2-commit.php">db2_commit</a> — Commits a transaction</li><li><a href="function.db2-conn-error.php">db2_conn_error</a> — Returns a string containing the SQLSTATE returned by the last connection attempt</li><li><a href="function.db2-conn-errormsg.php">db2_conn_errormsg</a> — Returns the last connection error message and SQLCODE value</li><li><a href="function.db2-connect.php">db2_connect</a> — Returns a connection to a database</li><li><a href="function.db2-cursor-type.php">db2_cursor_type</a> — Returns the cursor type used by a statement resource</li><li><a href="function.db2-escape-string.php">db2_escape_string</a> — Used to escape certain characters</li><li><a href="function.db2-exec.php">db2_exec</a> — Executes an SQL statement directly</li><li><a href="function.db2-execute.php">db2_execute</a> — Executes a prepared SQL statement</li><li><a href="function.db2-fetch-array.php">db2_fetch_array</a> — Returns an array, indexed by column position, representing a row in a result set</li><li><a href="function.db2-fetch-assoc.php">db2_fetch_assoc</a> — Returns an array, indexed by column name, representing a row in a result set</li><li><a href="function.db2-fetch-both.php">db2_fetch_both</a> — Returns an array, indexed by both column name and position, representing a row in a result set</li><li><a href="function.db2-fetch-object.php">db2_fetch_object</a> — Returns an object with properties representing columns in the fetched row</li><li><a href="function.db2-fetch-row.php">db2_fetch_row</a> — Sets the result set pointer to the next row or requested row</li><li><a href="function.db2-field-display-size.php">db2_field_display_size</a> — Returns the maximum number of bytes required to display a column</li><li><a href="function.db2-field-name.php">db2_field_name</a> — Returns the name of the column in the result set</li><li><a href="function.db2-field-num.php">db2_field_num</a> — Returns the position of the named column in a result set</li><li><a href="function.db2-field-precision.php">db2_field_precision</a> — Returns the precision of the indicated column in a result set</li><li><a href="function.db2-field-scale.php">db2_field_scale</a> — Returns the scale of the indicated column in a result set</li><li><a href="function.db2-field-type.php">db2_field_type</a> — Returns the data type of the indicated column in a result set</li><li><a href="function.db2-field-width.php">db2_field_width</a> — Returns the width of the current value of the indicated column in a result set</li><li><a href="function.db2-foreign-keys.php">db2_foreign_keys</a> — Returns a result set listing the foreign keys for a table</li><li><a href="function.db2-free-result.php">db2_free_result</a> — Frees resources associated with a result set</li><li><a href="function.db2-free-stmt.php">db2_free_stmt</a> — Frees resources associated with the indicated statement resource</li><li><a href="function.db2-get-option.php">db2_get_option</a> — Retrieves an option value for a statement resource or a connection resource</li><li><a href="function.db2-last-insert-id.php">db2_last_insert_id</a> — Returns the auto generated ID of the last insert query that successfully
  executed on this connection</li><li><a href="function.db2-lob-read.php">db2_lob_read</a> — Gets a user defined size of LOB files with each invocation</li><li><a href="function.db2-next-result.php">db2_next_result</a> — Requests the next result set from a stored procedure</li><li><a href="function.db2-num-fields.php">db2_num_fields</a> — Returns the number of fields contained in a result set</li><li><a href="function.db2-num-rows.php">db2_num_rows</a> — Returns the number of rows affected by an SQL statement</li><li><a href="function.db2-pclose.php">db2_pclose</a> — Closes a persistent database connection</li><li><a href="function.db2-pconnect.php">db2_pconnect</a> — Returns a persistent connection to a database</li><li><a href="function.db2-prepare.php">db2_prepare</a> — Prepares an SQL statement to be executed</li><li><a href="function.db2-primary-keys.php">db2_primary_keys</a> — Returns a result set listing primary keys for a table</li><li><a href="function.db2-procedure-columns.php">db2_procedure_columns</a> — Returns a result set listing stored procedure parameters</li><li><a href="function.db2-procedures.php">db2_procedures</a> — Returns a result set listing the stored procedures registered in a database</li><li><a href="function.db2-result.php">db2_result</a> — Returns a single column from a row in the result set</li><li><a href="function.db2-rollback.php">db2_rollback</a> — Rolls back a transaction</li><li><a href="function.db2-server-info.php">db2_server_info</a> — Returns an object with properties that describe the DB2 database server</li><li><a href="function.db2-set-option.php">db2_set_option</a> — Set options for connection or statement resources</li><li><a href="function.db2-special-columns.php">db2_special_columns</a> — Returns a result set listing the unique row identifier columns for a table</li><li><a href="function.db2-statistics.php">db2_statistics</a> — Returns a result set listing the index and statistics for a table</li><li><a href="function.db2-stmt-error.php">db2_stmt_error</a> — Returns a string containing the SQLSTATE returned by an SQL statement</li><li><a href="function.db2-stmt-errormsg.php">db2_stmt_errormsg</a> — Returns a string containing the last SQL statement error message</li><li><a href="function.db2-table-privileges.php">db2_table_privileges</a> — Returns a result set listing the tables and associated privileges in a database</li><li><a href="function.db2-tables.php">db2_tables</a> — Returns a result set listing the tables and associated metadata in a database</li></ul></li></ul></div><?php manual_footer($setup); ?>