From Clomosy Docs

Revision as of 15:09, 24 December 2024 by ClomosyAdmin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


It encloses a string in single quotes (') and escapes any existing single quotes within the string by doubling them. This is particularly useful when a string is to be used as a constant in an SQL query or another language, ensuring that the string is safely quoted.

Usage:

  • QuotedStr takes a string and surrounds it with single quotes.
  • If the string already contains single quotes, they are doubled, making it a valid constant in languages like SQL.

Example

var
  originalStr, quotedStr: string;
{
  originalStr = 'O''Reilly';  // O'Reilly is a common example with an apostrophe
  quotedStr = QuotedStr(originalStr);
  ShowMessage(quotedStr); // Output: 'O''Reilly'
}

Output:

Usage in SQL Structure

It is also used in cases where string expressions need to be added while writing sql code blocks in Clomosy application. An example code snippet is shown below.

Example

LocalQ = Clomosy.DBSQLServerQueryWith(' SELECT '+ QuotedStr('Product Name: ') +'+productName  AS MAINVIEW_TEXT ,'+ QuotedStr('Product Price: ') +'+ CAST(CAST(productPrice AS int)AS varchar(10)) AS MAINVİEW_CENTERTEXT FROM Products ');

See Also