db_quote

one of the documented procedures in this installation of the ACS
Usage:
db_quote   string
What it does:
Quotes a string value to be placed in a SQL statement.
Defined in: /web/philip/packages/acs-core/10-database-procs.tcl

Source code:


    regsub -all {'} "$string" {''} result
    return $result


philg@mit.edu