Sha256: cfa2c330d8c86a15a87dc1263af3b21c70852383143f37b3cd99152469377aa6
Contents?: true
Size: 394 Bytes
Versions: 7
Compression:
Stored size: 394 Bytes
Contents
local M = {} M.string = {} local doubleQuote = function( str ) return '"' .. str .. '"' end M.doubleQuote = doubleQuote local singleQuote = function( str ) return "'" .. str .. "'" end M.singleQuote = singleQuote local toSqlString = function( str ) local result = string.gsub( str, "'", "'''") result = singleQuote( result ) return result end M.toSqlString = toSqlString return M
Version data entries
7 entries across 7 versions & 1 rubygems