Documents tagged with "PREPARE"
Your Query returned 2 results
-
- How to Execute Prepared SQL in CUBRID
- In order to prepare SQL in CUBRID, we should use the PREPARE syntax: PREPARE stmt_name FROM preparable_stmt Remember that the preparable_stmt must be wrapped in single quotes. To execute the prepared SQL, we should use EXECUTE syntax: EXECUTE stmt_name [!USING value...
http://www.cubrid.org/wiki_tutorials/entry/execute-prepared-sql-in-cubrid
-
- Why prepare queries if auto-parameterization already does that?
- There are two main reasons why you should prepare your SQL:
You will protect youself from SQL injections.
You can improve the performance of your application.
SQL injection
This is a very important part you should remember. Auto-parameterization feature, which is available in...
http://www.cubrid.org/wiki_tutorials/entry/why-prepare-queries-if-auto-parameterization-already-does-that