f6bbe2 | /* | |||
6279f6 | * $Id: mysql.pike,v 1.3 1998/03/19 19:55:47 grubba Exp $ | |||
f6bbe2 | * * Glue for the Mysql-module */ inherit Mysql.mysql; | |||
2f9cc3 | ||||
6279f6 | string quote(string s) | |||
2f9cc3 | { return(replace(s, ({ "\\", "\"", "\0", "\'", "\n", "\r" }), ({ "\\\\", "\\\"", "\\0", "\\\'", "\\n", "\\r" }))); } |