From 753e54522d8b309f8208332338ce223bd55d4f61 Mon Sep 17 00:00:00 2001 From: lacatoire Date: Mon, 25 May 2026 20:07:28 +0200 Subject: [PATCH] Fix the broken cubrid_prepare description --- reference/cubrid/functions/cubrid-prepare.xml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/reference/cubrid/functions/cubrid-prepare.xml b/reference/cubrid/functions/cubrid-prepare.xml index 6adcaeb40220..ed9878f97cf8 100644 --- a/reference/cubrid/functions/cubrid-prepare.xml +++ b/reference/cubrid/functions/cubrid-prepare.xml @@ -15,16 +15,17 @@ intoption0 - 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. + The cubrid_prepare function compiles a SQL statement for a given + connection handle and returns a handle that represents the pre-compiled statement. - Accordingly, 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 using the cubrid_bind function only. + A prepared statement can be executed several times, which is efficient for repeated + execution or for processing long data. Only a single statement can be used, and a + parameter can be marked with a question mark (?) at the appropriate + place in the SQL statement. Add a parameter when binding a value in the + VALUES clause of an INSERT statement or in the + WHERE clause. Note that a value can be bound to a parameter only by + using the cubrid_bind function.