About 30,200 results
Open links in new tab
  1. SqlCommand Class (Microsoft.Data.SqlClient) | Microsoft Learn

    The following sample shows how to create and execute different types of SqlCommand objects. First you must create the sample database, by executing the following script:

  2. ADO.NET SqlCommand in C# with Examples - Dot Net Tutorials

    In this article, I am going to discuss ADO.NET SqlCommand in C#. SqlCommand class is used to store and execute SQL statement for SQL Server

  3. C# - SqlCommand Example - Dot Net Perls

    Oct 11, 2023 · This program uses the SqlCommand data object in C#. We use SqlCommand in the context of a complete but trivial program that reads data from a specific database on the disk.

  4. Introdução ao objeto SqlCommand do SQL Server - Axial SQL

    O objeto SqlCommand é um componente fundamental do ADO.NET, semelhante ao objeto Command no ADO. Ele permite que você interaja com o banco de dados do SQL Server …

  5. Using SqlCommand in C# with Examples - Web Dev Tutor

    Aug 7, 2024 · In C#, the SqlCommand class is used to execute SQL statements against a SQL Server database. It allows developers to interact with databases efficiently and securely.

  6. C# - ADO .NET para iniciantes - SqlCommand - Macoratti.Net

    A classe SqlCommand é usada para representar uma instrução SQL ou stored procedure disparada com o objetivo de inserir, atualizar, excluir ou selecionar informações de uma fonte …

  7. SqlCommand Classe (System.Data.SqlClient) | Microsoft Learn

    O exemplo a seguir mostra como criar e executar diferentes tipos de objetos SqlCommand. Primeiro, você deve criar o banco de dados de exemplo executando o seguinte script:

  8. Como Utilizar SqlCommand no Ambiente Windows para Executar …

    SqlCommand é uma ferramenta poderosa para interagir com bancos de dados SQL Server no ambiente Windows. Com ele, você pode executar uma variedade de comandos SQL para …

  9. C# - SqlClient Tutorial - Dot Net Perls

    Aug 27, 2025 · Tip Every SqlCommand instance has a Parameter collection, which is an SqlParameterCollection and accessed with the Parameters property. Tip 2 We use the Add …

  10. C# SqlCommand - The Developer Blog

    First, this program demonstrates the usage of the SqlCommand data object in the C# language. We use SqlCommand in the context of a complete but trivial program that reads data from a …