ToSqlString() public méthode

public ToSqlString ( ) : SqlString
Résultat SqlString
Exemple #1
0
 /// <summary>
 /// Converts the value of the specified SqlDateTime to its equivalent SqlString representation.
 /// </summary>
 /// <param name="value">An SqlDateTime.</param>
 /// <returns>The SqlString equivalent of the SqlDateTime.</returns>        
 public static SqlString ToSqlString(SqlDateTime value) { return value.ToSqlString(); }
Exemple #2
0
 /// <summary>
 /// Converts the value of the specified SqlDateTime to its equivalent SqlChars representation.
 /// </summary>
 /// <param name="value">An SqlDateTime.</param>
 /// <returns>The equivalent SqlChars.</returns>
 public static SqlChars ToSqlChars(SqlDateTime value) { return (SqlChars)value.ToSqlString(); }
Exemple #3
0
		public void ToStringTest()
		{
			//
			// Thanks for Marting Baulig for these (DateTimeTest.cs)
			//
			
                        SqlDateTime t1 = new SqlDateTime (2002, 2, 25, 5, 25, 13);
                        SqlDateTime t2 = new SqlDateTime (2002, 2, 25, 15, 25, 13);
			
			// Standard patterns
                        Assert.AreEqual("2/25/2002 5:25:13 AM", t1.ToString (), "L01");
                        Assert.AreEqual((SqlString)"2/25/2002 5:25:13 AM", t1.ToSqlString (), "L02");
		}
Exemple #4
0
		/// <summary>Converts the value from <c>SqlDateTime</c> to an equivalent <c>SqlChars</c> value.</summary>
		public static SqlChars ToSqlChars(SqlDateTime p)     { return (SqlChars)p.ToSqlString(); }
Exemple #5
0
		/// <summary>Converts the value from <c>SqlDateTime</c> to an equivalent <c>SqlString</c> value.</summary>
		public static SqlString ToSqlString(SqlDateTime p)     { return p.ToSqlString(); }