MySqlHelper.EscapeString Method

MySQL Connector/Net

MySqlHelperEscapeString Method
Escapes the string.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public static string EscapeString(
	string value
)
Public Shared Function EscapeString ( 
	value As String
) As String
public:
static String^ EscapeString(
	String^ value
)
static member EscapeString : 
        value : string -> string 

Parameters

value
Type: SystemString
The string to escape

Return Value

Type: String
The string with all quotes escaped.
See Also