程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> mvc4-c#操作數據庫方法怎麼return

mvc4-c#操作數據庫方法怎麼return

編輯:編程綜合問答
c#操作數據庫方法怎麼return

哎 就說三層來說 如果我想 查詢出用戶名 密碼 真實名字 號碼 我先寫一個方法查詢出生出來return一次 再 一個方法轉換字符return 再一個方法傳送到頁面 寫 哎

我現在連接到數據庫SqlConnection conn = new SqlConnection(connstr)
在SqlCommand cmd =。。。就寫一個查詢 return出去 在另外一個類裡寫轉換字符怎麼寫 能說明白點嗎

最佳回答:


剛才那個例子不對,那是我計數用的
public TB_Nation SearchByName(string name)
{
TB_Nation nation = new TB_Nation();
//nation = null;
using (SqlConnection conn = new SqlConnection(connString))
{
SqlCommand command = new SqlCommand("select * from TB_Nation where NationName=@nationname ", conn);
command.CommandType = CommandType.Text;
command.Parameters.Add("@nationname", SqlDbType.VarChar).Value = name;
conn.Open();

            using (SqlDataReader reader = command.ExecuteReader())
            {
                if (reader.Read())
                {
                    nation.Id = int.Parse(reader["id"].ToString());
                    nation.Nationname = name;
                }
            }
            conn.Close();
            conn.Dispose();
        }
        return nation;
    }
    如果你想返回其他類型的值,比如string,int ,一樣的道理,類型換一下就可以
qq_27562545
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved