ToSqlString() public method

public ToSqlString ( ) : SqlString
return SqlString
Esempio n. 1
0
 /// <summary>
 /// Converts the value of the specified SqlDecimal to its equivalent SqlString representation.
 /// </summary>
 /// <param name="value">An SqlDecimal.</param>
 /// <returns>The SqlString equivalent of the SqlDecimal.</returns>        
 public static SqlString ToSqlString(SqlDecimal value) { return value.ToSqlString(); }
Esempio n. 2
0
		/// <summary>Converts the value from <c>SqlDecimal</c> to an equivalent <c>SqlString</c> value.</summary>
		public static SqlString ToSqlString(SqlDecimal      p) { return p.ToSqlString();                                                                  }
Esempio n. 3
0
 /// <summary>
 /// Converts the value of the specified SqlDecimal to its equivalent SqlChars representation.
 /// </summary>
 /// <param name="value">An SqlDecimal.</param>
 /// <returns>The equivalent SqlChars.</returns>
 public static SqlChars ToSqlChars(SqlDecimal value) { return (SqlChars)value.ToSqlString(); }
Esempio n. 4
0
		/// <summary>Converts the value from <c>SqlDecimal</c> to an equivalent <c>SqlChars</c> value.</summary>
		public static SqlChars ToSqlChars(SqlDecimal p)      { return (SqlChars)p.ToSqlString(); }