1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>libzdb | Oracle Options</title>
<link rel="stylesheet" href="libzdboptions.css">
</head>
<body>
<h1>
Oracle <i>URL</i> properties
</h1>
<table>
<tr>
<th>Property</th>
<th>Description</th>
<th>Type</th>
</tr>
<tr>
<td >
user
</td>
<td>
The Oracle login ID. This property is required unless the auth-part of the URL was used.
<p class="example">Example: user=root</p>
</td>
<td>
String
</td>
</tr>
<tr>
<td >
password
</td>
<td>
The password for user. This property is required unless the auth-part of the URL was used.
<p class="example">Example: password=swordfish</p>
</td>
<td>
String
</td>
</tr>
<tr>
<td>
fetch-size
</td>
<td>
The number of rows that should be fetched from the database when more rows are needed for ResultSet objects. Default is 100 rows. Rows
are retrieved in-memory. A larger value will make libzdb use more memory.
<p class="example">Example: fetch-size=10</p>
</td>
<td>
Number [1..int.max]
</td>
</tr>
<tr>
<td>
sysdba
</td>
<td>
Set to true if connection should be done as sysdba with system privileges. The
user specified, typically <strong>sys</strong>, must belong to the SYSDBA role.
Default is false
<p class="example">Example: sysdba=true</p>
</td>
<td>
Boolean (true/false)
</td>
</tr>
</table>
</body>
</html>
|