diff --git a/reference/cubrid/functions/cubrid-fetch-object.xml b/reference/cubrid/functions/cubrid-fetch-object.xml
index f6fab41f07..843a1107ae 100644
--- a/reference/cubrid/functions/cubrid-fetch-object.xml
+++ b/reference/cubrid/functions/cubrid-fetch-object.xml
@@ -12,6 +12,8 @@
objectcubrid_fetch_object
resourcereq_identifier
+ stringclass_name
+ arrayparams
This function returns an object with the column names of the result set as properties. The values of these properties are extracted from the current row of the result.
@@ -22,9 +24,27 @@
&reftitle.parameters;
+
+ req_identifier
+ This is the request identifier.
+
+
+ class_name
+
+
+ The name of the class to instantiate, set the properties of and return.
+ If not specified, a stdClass object is returned.
+
+
+
- req_identifier
- This is the request identifier.
+ params
+
+
+ An optional array of parameters to pass to the constructor
+ for class_name objects.
+
+
diff --git a/reference/cubrid/functions/cubrid-prepare.xml b/reference/cubrid/functions/cubrid-prepare.xml
index 0a4266518d..a97df61ba7 100644
--- a/reference/cubrid/functions/cubrid-prepare.xml
+++ b/reference/cubrid/functions/cubrid-prepare.xml
@@ -19,7 +19,7 @@
The cubrid_prepare function is a sort of API which represents SQL statements compiled previously to a given connection handle. This pre-compiled SQL statement will be included in the cubrid_prepare.
- Accccordingly, you can use this statement effectively to execute several times repeatedly or to process long data. Only a single statement can be used and a parameter may put a question mark (?) to appropriate area in the SQL statement. Add a parameter when you bind a value in the VALUES cluse of INSERT statement or in the WHERE clause. Note that it is allowed to bind a value to a MARK(?) by the cubrid_bind only.
+ Accccordingly, you can use this statement effectively to execute several times repeatedly or to process long data. Only a single statement can be used and a parameter may put a question mark (?) to appropriate area in the SQL statement. Add a parameter when you bind a value in the VALUES clause of INSERT statement or in the WHERE clause. Note that it is allowed to bind a value to a MARK(?) by the cubrid_bind only.
diff --git a/reference/cubrid/functions/cubrid-unbuffered-query.xml b/reference/cubrid/functions/cubrid-unbuffered-query.xml
index 7d8e687b6d..915e3c039f 100644
--- a/reference/cubrid/functions/cubrid-unbuffered-query.xml
+++ b/reference/cubrid/functions/cubrid-unbuffered-query.xml
@@ -17,9 +17,6 @@
This function performs a query without fetching the results into memory.
-
- Known issue: it currently uses the normal version - the one that fetches the results.
-
@@ -51,6 +48,18 @@
+
+ &reftitle.notes;
+
+
+ The benefits of cubrid_unbuffered_query come
+ at a cost: you cannot use cubrid_num_rows and
+ cubrid_data_seek on a result set returned from
+ cubrid_unbuffered_query.
+
+
+
+
&reftitle.examples;