谁能说一下这一段C#代码的意思,写一下注释,谢谢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;

namespace 网吧管理
{
public class DBHelper
{
public static float Price = 0.1f;
public static SqlConnection Connection = new SqlConnection("server=.;database=网吧管理系统;uid=sa;pwd=122");
public static SqlDataReader dr(string sql)
{
SqlCommand Command = new SqlCommand();
Command.Connection = DBHelper.Connection;
Command.CommandText = sql;
// //DBHelper.Connection.Open();
SqlDataReader dr = Command.ExecuteReader();
return dr;
}

}
}

namespace 网吧管理
{
public class DBHelper //定义类名(看得出实际上是一个数据库访问类)
{
public static float Price = 0.1f; //定义价格,0.1 复浮点型
public static SqlConnection Connection = new SqlConnection("server=.;database=网吧管理系统;uid=sa;pwd=122"); //创建sqlconnection连接对象,通过构造函数进行连接字串的赋值
public static SqlDataReader dr(string sql) //sqldatareader类创建,获取数据
{
SqlCommand Command = new SqlCommand(); //创建command操作对象
Command.Connection = DBHelper.Connection; //指定command的connection对象
Command.CommandText = sql; //将sql查询语句赋给command对象
// //DBHelper.Connection.Open(); //打开数据库连接(已被注释)
SqlDataReader dr = Command.ExecuteReader(); //执行查询语句并返回结果
return dr; //将结果返回
}

}
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-09-06
定义一个数据库连接类,定义一个数据库操作对象,一个数据库Reader对象dr,执行传入函数的“sql”字符串的命令,然后返回dr。
这是一个公共类,包含在命名空间里,说明它是一个可共享调用的操作数据库的基类。

谁能说一下这一段C#代码的意思,写一下注释,谢谢
public static float Price = 0.1f; \/\/定义价格,0.1 复浮点型 public static SqlConnection Connection = new SqlConnection("server=.;database=网吧管理系统;uid=sa;pwd=122"); \/\/创建sqlconnection连接对象,通过构造函数进行连接字串的赋值 public static SqlDataReader dr(string sql) \/\/sqld...

求解释一段C#代码,对每一行代码进行注释
con.Open();\/\/打开链接 SqlCommand cmd=new SqlCommand("ShowNews",con);\/\/创建sqlcommand对象,该对象用来实现数据库的操作和执行存储过程的。这个代码用来执行存储过程的,名称为shownews cmd.CommandType=CommandType.StoredProcedure;\/\/指定执行存储过程 cmd.Parameters.Add("@newsID",newsID);\/\/存储过...

请高手帮我解释一下这些C#代码的意思(连接数据库的代码)
首先最下面的FrmMain_Load(...)是载入窗体时的初始化 先new一个publicclass()对象 接下来调用此对象的GetDataSet()方法 来看GetDataSet()方法 新建一个DataSet,用来存放从数据库获得的记录,Dataset可以在关闭数据库连接后使用;Sqldataadapter,从名字上看适配器的意识,类是我们用的笔记本的交流电适配器...

这段代码求一个详细的注释!要详细啊!!!着急辛苦大家!
} 整段代码的意思就是:将一个文件的全部内容显示在名为text的文本框中。不知道这样注释可否理解?

C#又一段段代码求完整注释 谢谢.
string sourcepath=@"c:\\1";string targetpath=@"c:\\2";\/\/下面这句应该是实例化一个类对象,要去这个类中看才知道是什么意思 MyFileOption myoption = new MyFileOption();string[] filesname = null;\/\/创建一个空字符串数组 \/*把类的文件夹操作(源路径,目标路径,选择序号,输出参数 ...

C# .NET 求高手注释每段代码 在线等 务必详细 谢了
你的这段代码只是一部分查询程序的,因为你前期定义不明确所以注释起来只能根据大概给你解释下你自己对照理解下吧。(另外像这样每行解释不大现实因为你的一些定义不是所有人都这样定义字符串的)db.SQL = "select count(1) from 订单条目 where 菜名=" + "'" + dt.Rows[0]["菜名"].ToString()...

请高手帮我写一下C#代码注释,万分感谢~~~
port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);\/\/绑定个事件 DataReceived,意思是接收完之后,我就触发port_DataReceived方法 port.Open();\/\/开端口 port.DtrEnable = true;port.RtsEnable = true;} catch (Exception ex){ throw ex;} return port;} \/\/关闭端口 public...

这段C#源代码是什么意思。。
public class ClassUnit { \/\/static List<Course> CourseList = new List<Course>(); \/\/这句话被注释掉了 没用.public const int WeekDay = 5; \/\/..公共常量整型WeekDay 值是5 public const int CourseCount = 6; \/\/..公共常量整型 CourseCount 值是6 public int ID; \/\/声明一个公共...

帮忙翻译一段C#代码
protected void Button1_Click(object sender, EventArgs e){ \/\/ 获得在web.config里设置的连接字符串”DB_tpjConnectionString“String settings = ConfigurationManager.ConnectionStrings["DB_tpjConnectionString"].ToString();\/\/ 创建数据连接conn SqlConnection conn = new SqlConnection(settings);\/\/ 这...

球C#大神把这段代码注释出来- -顺便标出来用到的控件或者语法
) 后的id的值,传给变量nid nid =Request.QueryString["id"].ToString().Trim(); if (!IsPostBack)\/\/不是数据回发,也即是第一次加载页面 { string sql;\/\/定义局部变量sql,存储sql语句 \/\/Request.QueryString["id"].ToString().Trim()可以用nid替换 sql = "select * fr...

相似回答
大家正在搜