ModuleSharedClassesToSqlStringForLike Method |
' call this function to cleanup text field used in the WHERE clause of a queries using LIKE:
\ => \\\\ don't ask me why a single backslash must become a quadruple backslah ! see http://lists.mysql.com/mysql/206935
% => \%
' => \'
" => \"
keep '_' to represent any character
Namespace:
Biolomics.SharedClasses
Assembly:
Biolomics.SharedClasses (in Biolomics.SharedClasses.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static string ToSqlStringForLike(
string p_Text
)
Public Shared Function ToSqlStringForLike (
p_Text As String
) As String
Parameters
- p_Text
- Type: SystemString
The p_ text.
Return Value
Type:
String[Missing <returns> documentation for "M:Biolomics.SharedClasses.ModuleSharedClasses.ToSqlStringForLike(System.String)"]
See Also