資源簡介
C# 小區物業管理系統 SqlServerC# 小區物業管理系統 SqlServer

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
using?System.Data;
using?System.Data.SqlClient;
namespace?Shine
{
??public??class?baseOperate
????{
????????//返回SqlConnection對象
????????public?static?SqlConnection?getcon()?{
????????????string?M_str_sqlcon?=?“Data?Source=localhost;Database=Shine;User?id=sa;PWD=123“;
????????????SqlConnection?myCon?=?new?SqlConnection(M_str_sqlcon);
????????????return?myCon;
????????}
????????//用來執行SQL語句
????????public??void?getcom(string?M_str_sqlstr)?{
????????????SqlConnection?sqlcon?=?baseOperate.getcon();
????????????sqlcon.Open();
????????????SqlCommand?sqlcom?=?new?SqlCommand(M_str_sqlstrsqlcon);
????????????sqlcom.ExecuteNonQuery();
????????????sqlcom.Dispose();
????????????sqlcon.Close();
????????????sqlcon.Dispose();
????????}
????????//返回一個DataSet對象
????????public??DataSet?getds(string?M_str_sqlstrstring?M_str_table)?{
????????????SqlConnection?sqlcon?=?baseOperate.getcon();
????????????SqlDataAdapter?sqlda?=?new?SqlDataAdapter(M_str_sqlstrsqlcon);
????????????DataSet?myds?=?new?DataSet();
????????????sqlda.Fill(mydsM_str_table);
????????????return?myds;
????????}
????????//返回SqlDataReader對象
????????public??SqlDataReader?getread(string?M_str_sqlstr)
????????{
????????????SqlConnection?sqlcon?=?baseOperate.getcon();
????????????SqlCommand?sqlcom?=?new?SqlCommand(M_str_sqlstrsqlcon);
????????????sqlcon.Open();
????????????SqlDataReader?sqlread?=?sqlcom.ExecuteReader(CommandBehavior.CloseConnection);
????????????return?sqlread;
????????}
????
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1845??2009-05-26?23:50??2009年C#項目\Shine\Shine.sln
????..A..H.????153600??2010-01-11?08:44??2009年C#項目\Shine\Shine.suo
?????文件??????21497??2007-04-05?15:11??2009年C#項目\Shine\images\about.jpg
?????文件??????28310??2007-06-13?17:11??2009年C#項目\Shine\images\bagl.jpg
?????文件??????34250??2007-06-13?17:07??2009年C#項目\Shine\images\baxl.jpg
?????文件??????53845??2007-04-05?09:39??2009年C#項目\Shine\images\bbcx.jpg
?????文件??????28405??2007-06-13?17:12??2009年C#項目\Shine\images\bjlh.jpg
?????文件??????20954??2007-03-30?15:26??2009年C#項目\Shine\images\boxset.jpg
?????文件??????46922??2007-04-05?16:10??2009年C#項目\Shine\images\bxgl.jpg
?????文件??????26984??2007-06-13?17:18??2009年C#項目\Shine\images\cshdata.jpg
?????文件??????39705??2007-06-13?16:34??2009年C#項目\Shine\images\cwgl.jpg
?????文件??????44049??2007-06-13?17:22??2009年C#項目\Shine\images\czygl.jpg
?????文件??????48078??2007-06-13?17:17??2009年C#項目\Shine\images\dxsz.jpg
?????文件??????30329??2007-06-13?17:14??2009年C#項目\Shine\images\fcsz.jpg
?????文件??????44171??2007-06-13?16:40??2009年C#項目\Shine\images\fczt.jpg
?????文件??????73428??2007-04-05?15:59??2009年C#項目\Shine\images\ftgf.jpg
?????文件??????45501??2007-06-13?17:15??2009年C#項目\Shine\images\fxmsz.jpg
?????文件??????64034??2007-06-13?16:50??2009年C#項目\Shine\images\grfymx.jpg
?????文件??????51790??2007-06-13?16:48??2009年C#項目\Shine\images\jftzd.jpg
?????文件??????32440??2007-06-13?17:05??2009年C#項目\Shine\images\jyyj.jpg
?????文件??????81353??2007-04-05?15:36??2009年C#項目\Shine\images\ma.jpg
?????文件??????72042??2007-04-05?15:41??2009年C#項目\Shine\images\mai.jpg
?????文件??????62888??2007-06-06?12:20??2009年C#項目\Shine\images\main.gif
?????文件??????66433??2007-06-13?16:11??2009年C#項目\Shine\images\main.jpg
?????文件??????64280??2007-03-30?10:55??2009年C#項目\Shine\images\paper.gif
?????文件??????55426??2007-06-13?17:02??2009年C#項目\Shine\images\qfdx.jpg
?????文件??????49104??2007-06-13?16:17??2009年C#項目\Shine\images\scwyf.jpg
?????文件??????50253??2007-04-05?09:38??2009年C#項目\Shine\images\sfgl.jpg
?????文件??????32979??2007-06-13?16:57??2009年C#項目\Shine\images\sfqkfx.jpg
?????文件??????37981??2007-06-13?17:19??2009年C#項目\Shine\images\sjbf.jpg
............此處省略481個文件信息
評論
共有 條評論