|
|
|
C# WINAPP มีวิธี select ข้อมูล ออกมาหลายๆค่า แล้วประกาศตัวแปรให้ค่าที่ select มาแต่ละตัวมั้ยครับ |
|
|
|
|
|
|
|
Code (C#)
string cusid = string.Empty;
string name = string.Empty;
private void CreateCommand(string queryString,
string connectionString)
{
using (SqlConnection connection = new SqlConnection(
connectionString))
{
connection.Open();
SqlCommand command = new SqlCommand(queryString, connection);
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
cusid = reader[0];
name = name[1];
}
}
}
ที่เหลือประยุกต์ดูครับ
|
|
|
|
|
Date :
2013-08-03 16:55:39 |
By :
01000010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|