| Previous Next Edit Rename Undo Refresh Search Administration |
|
| Documentation |
|
FUNCTION Subst ( Format AS String, Arguments AS , ... ) AS StringCreates a SQL sentence by substituting its arguments in a format string.
These arguments are quoted according to the underlying database SQL syntax.
PRINT DB.Subst("WHERE Name = &1 AND Date = &2", "Benoit", Now)
WHERE Name = 'Benoit' AND Date = '2006-02-15 11:51:33.043'