Fix typos.
This commit is contained in:
parent
3b8c9cbd5f
commit
b199c5d57f
|
@ -32,7 +32,7 @@ For general information on SODA, see the `SODA home page
|
|||
and the Oracle Database `Introduction to Simple Oracle Document Access (SODA)
|
||||
<https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=ADSDI>`__ manual.
|
||||
|
||||
For specified requirements see the cx_Oracle :ref:`SODA requirements <sodarequirements>`.
|
||||
For specific requirements see the cx_Oracle :ref:`SODA requirements <sodarequirements>`.
|
||||
|
||||
cx_Oracle uses the following objects for SODA:
|
||||
|
||||
|
|
|
@ -595,7 +595,7 @@ database server.</p>
|
|||
</table>
|
||||
|
||||
<p>DRCP is useful when the database host machine does not have
|
||||
enough memory to handled the number of database server processes
|
||||
enough memory to handle the number of database server processes
|
||||
required. However, if database host memory is large enough, then
|
||||
the default, 'dedicated' server process model is generally
|
||||
recommended. If DRCP is enabled, it is best used in conjunction
|
||||
|
|
|
@ -501,7 +501,7 @@ static int cxoVar_setSingleValue(cxoVar *var, uint32_t arrayPos,
|
|||
value = convertedValue;
|
||||
}
|
||||
|
||||
// tranform value from Python to value expected by ODPI-C
|
||||
// transform value from Python to value expected by ODPI-C
|
||||
data = &var->data[arrayPos];
|
||||
data->isNull = (value == Py_None);
|
||||
if (!data->isNull) {
|
||||
|
|
Loading…
Reference in New Issue