**public static void göster()
{
SqlConnection connection =GetConnection.GetConnectionObject();
//TODO parametreleri command.parameters yoluyla alsın
SqlCommand command = new SqlCommand();
command.CommandText= "select * from windowsserv";
command.Connection = connection;
if (connection.State != ConnectionState.Open)
connection.Open();
Console.WriteLine("Connection opened");
SqlDataReader rdr = command.ExecuteReader();
while(rdr.Read())
{
------------------> Console.WriteLine(rdr[0].ToString()+"--"+rdr[1].ToString());
}
if (connection.State != ConnectionState.Closed)
connection.Close();
Console.WriteLine("Connection Closed.");
Console.ReadLine();
}
大家好,這是我的代碼,也有更多的ı沒有顯示,我記錄數據到SQL Server。這個代碼塊(用箭頭指出)顯示所有的sql server數據,並且希望在控制檯中只看到最後的數據(記錄到sql server)。但是我找不到任何答案。請幫助。**與SQL使用ado .net的Windows服務集成
這是一個很奇怪的問題。從你的問題中不可能告訴「最後數據」的定義應該是什麼。 –