sql >> Databáze >  >> RDS >> Sqlserver

DateTime z .NET na smalldatetime v SQL - jak dělat dotazy?

Vyzkoušel jsem to pomocí SQL Server 2008 R2 Express.

Zde je příklad uložené procedury, kterou jsem napsal:

CREATE PROCEDURE [dbo].[ShowGivenSmallDateTimeValue] 
    @givenSmallDateTime smalldatetime
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Simply return the given small date time value back to sender.
    SELECT @givenSmallDateTime
END

A zde je kód C# pro provedení procedury:

var connectionBuilder = new SqlConnectionStringBuilder();
connectionBuilder.DataSource = "localhost\\sqlexpress";
connectionBuilder.IntegratedSecurity = true;

var now = DateTime.UtcNow;

using (var connection = new SqlConnection(connectionBuilder.ConnectionString))
using (var command = new SqlCommand())
{
    command.Connection = connection;
    command.CommandType = CommandType.StoredProcedure;
    command.CommandText = "ShowGivenSmallDateTimeValue";
    command.Parameters.Add(new SqlParameter("@givenSmallDateTime", SqlDbType.SmallDateTime) { Value = now });

    connection.Open();
    var result = (DateTime)command.ExecuteScalar();
    var difference = result - now;

    Console.WriteLine("Due to the smalldatetime roundings we have a difference of " + difference + ".");
}

A to prostě funguje.



  1. Které jsou výkonnější, CTE nebo dočasné tabulky?

  2. Vyberte Dotaz k načtení řádků v MySQL

  3. Jak hledat podřetězce Soundex() v MySQL?

  4. Jak dochází k poškození databáze?