diff --git a/functions/ovrimos.xml b/functions/ovrimos.xml
index 9034751466..01f0bdfd5b 100644
--- a/functions/ovrimos.xml
+++ b/functions/ovrimos.xml
@@ -166,7 +166,7 @@ if ($conn != 0) {
are to be retrieved from long datatypes (long varchar and long
varbinary). Default is zero. Regardless of its taking a result_id
as an argument, it currently sets this parameter for all result
- sets. Returns true.
+ sets. Returns TRUE.
@@ -234,7 +234,7 @@ if ($conn!=0) {
Description
- int ovrimos_execute
+ boolean ovrimos_execute
int result_id
array
parameters_array
@@ -247,7 +247,8 @@ if ($conn!=0) {
ovrimos_execute executes a prepared
- statement. Returns true or false. If the prepared statement
+ statement. Returns TRUE or FALSE.
+ If the prepared statement
contained parameters (question marks in the statement), the
correct number of parameters should be passed in an array. Notice
that I don't follow the PHP convention of placing just the name
@@ -317,7 +318,7 @@ if ($conn!=0) {
Description
- int ovrimos_fetch_into
+ boolean ovrimos_fetch_into
int result_id
array result_array
string
@@ -343,7 +344,7 @@ if ($conn!=0) {
and absolute position from the start (essentially equivalent to
'first' but needs 'rownumber'). Case is not
significant. 'Rownumber' is optional except for absolute
- positioning. Returns true or false.
+ positioning. Returns TRUE or FALSE.
@@ -389,7 +390,7 @@ if ($conn!=0) {
Description
- int ovrimos_fetch_row
+ boolean ovrimos_fetch_row
int result_id
int
how
@@ -406,7 +407,7 @@ if ($conn!=0) {
ovrimos_fetch_row fetches a row from the
result set. Column values should be retrieved with other
- calls. Returns true or false.
+ calls. Returns TRUE or FALSE.
@@ -481,7 +482,7 @@ if ($conn != 0) {
Description
- int ovrimos_result_all
+ boolean ovrimos_result_all
int result_id
string
format
@@ -494,7 +495,8 @@ if ($conn != 0) {
ovrimos_result_all prints the whole result
- set as an HTML table. Returns true or false.
+ set as an HTML table. Returns TRUE or
+ FALSE.
@@ -696,7 +698,8 @@ if ($conn != 0) {
ovrimos_field_len is used to get the length
- of the output column.
+ of the output column with number field_number,
+ in result result_id.
ovrimos_field_len returns the length of the
@@ -741,7 +744,7 @@ if ($conn != 0) {
Description
- int ovrimos_free_result
+ boolean ovrimos_free_result
int result_id
@@ -751,7 +754,7 @@ if ($conn != 0) {
ovrimos_free_result frees the specified
- result_id. Returns true.
+ result_id result_id. Returns TRUE.