Command-Klasse
Um auf einer Datenquelle eine Abfrage ausführen zu können, benötigt man ein ...Command
-Objekt, das diese Abfrage ausführt. Für SQL Server ist dies die Klasse SqlCommand[64]. Bevor ein Command
-Objekt verwendet werden kann, muss es auf die Abfrage vorbereitet werden. Das Command
-Objekt muss wissen, zu welcher Verbindung die Abfrage geschickt werden muss, den Typ der Abfrage (Abfragetext oder eine gespeicherte Prozedur) und die Abfrage selbst.
using System.Data.SqlClient;
using System.Configuration;
namespace ConnectionApp
{
public partial class Form1 : Form
{
SqlConnection connection;
SqlCommand command; ConnectionStringSettings connectionInfo; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs ...
Get Microsoft Visual C# 2010 - Das Entwicklerbuch now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.