當前位置:係統粉 > 電腦問答 > 其他問答 > 應該如何理解被注釋的地方

應該如何理解被注釋的地方

提問者:花依樣小穎  |  瀏覽 次  |  提問時間:2017-01-17  |  回答數量:2

應該如何理解被注釋的地方 using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.SqlClient;namespace ClassLibrary3{ public class Class1 { private static readonly string URL = \"Data Source=.;Initial Catalog=MyQQ;Integrated Security=True\"; private static SqlConnection conn = new SqlConnection(URL); public static int ExecuteNonQuery(string sql) { try { SqlCommand comm = new SqlCommand(sql, conn); conn.Open(); return comm.ExecuteNonQuery(); } catch (Exception ex) { throw ex; }

已有2條答案
示疼

示疼

回答數:66  |  被采納數:9

2017-01-17 06:00:15
創建一個 名為 ds 的數據集
//DataSet ds = new DataSet();
創建一個DataAdapter來執行要查詢的SQL語句
//SqlDataAdapter sda = new SqlDataAdapter(sql, conn);
將查詢出來的結果 填充到ds 裏麵
//sda.fill(ds);
返回 ds
//return ds;

大概就是這樣
讚 6
賀枝枝

賀枝枝

回答數:120  |  被采納數:113

2017-01-17 08:31:19
很詳細.....[s:526]感謝[s:524]
讚 12
解決方法
版權信息

Copyright @ 2011 係統粉 版權聲明 最新發布內容 網站導航