在众多程序编写中,数据库编程都是最重要的一项编程生存技能之一。而所有的语言当中,其步骤基本可分为4步,总结为4个字:“连、命、执、关”。
1.“连”
即为“建立连接”的意思,以C#为例,可用SqlConnection或OleDbConnection,设置其连接字符串就完成建立连接步骤了。当然你现在可以打开连接,但是放在后面的try...catch...finally中打开更好。
2.“命”
“建立命令”,建立好连接你需要利用SqlCommand或OleDbCommand写入SQL语句。当然我这里把dataAdapter也放在命令里面,用法与Sqlcommand类似。
3.“执”
“执行命令”,利用SqlDataReader或其他执行对象,执行第2步中建立好的命令。
4.“关”
“关闭连接”,执行完成后必须及时关闭连接,节省资源。
代码示例:
//连
string strSql=“server=serverName;database=dbName;integrated security=true”;
SqlConnection sqlCon=new SqlConnection(strSql);
//命
string strCmd="select * from table";
SqlCommand sqlCmd=new SqlCommand(strCmd,sqlCon);
//执
try
{sqlCon.Open();
SqlDataReader sqlDr=sqlCmd.ExecuteReader();
while(sqlDr.Read())
{Response.Wirte(sqlDr[1].toString()+"<br>");}
}
catch(Exception ee)
{Response.Write(ee.toString());}
//关
finally
{sqlDr.Colse();}