class SQLite3::Database

def quote( string )

Experimental RBS support (using type sampling data from the type_fusion project).

def quote: (String string) -> String

This signature was generated using 4 samples from 1 application.

single-quote characters. The modified string is returned.
It replaces all instances of the single-quote character with two
Quotes the given string, making it safe to use in an SQL statement.
def quote( string )
  string.gsub( /'/, "''" )
end