C# 에서 사용할 수 있는 MSSQL Helper Class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | using System; using System.Data; using System.Data.SqlClient; namespace DataLayer { public class SqlHelper : IDisposable { private SqlConnection connection = null; private String connectionString = "dbConnection"; // {0} : IP, {1} : Port, {2} : DB Name, {3} : userID, {4} : userPW private String connectionFormat = "data source = {0},{1} ; initial Catalog = {2} ; user id = {3} ;PASSWORD = {4}"; public String ConnectionString { set { connectionString = value; } } #region Constructors public SqlHelper() { } public SqlHelper(string pConnectionString) { if (!string.IsNullOrEmpty(pConnectionString.Trim())) { connectionString = pConnectionString; } } public SqlHelper(string pIP, string pPort, string pDbName, string pUserID, string pUserPW) { connectionString = string.Format(this.connectionFormat, pIP, pPort, pDbName, pUserID, pUserPW); } #endregion #region Add Parameter TO Query private void AddParameter(SqlCommand command, string parameterName, SqlDbType dbType, int size, ParameterDirection direction, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value) { SqlParameter p = new SqlParameter(parameterName, dbType, size, direction, precision, scale, sourceColumn, sourceVersion, true, value, null, null, null); command.Parameters.Add(p); } public void AddParameter(SqlCommand command, string parameterName, SqlDbType dbType, int size, ParameterDirection direction, object value) { AddParameter(command, parameterName, dbType, size, direction, 0, 0, null, DataRowVersion.Current, value); } public void AddInParameter(SqlCommand command, string parameterName, SqlDbType dbType, object value) { AddParameter(command, parameterName, dbType, 0, ParameterDirection.Input, value); } public void AddOutParameter(SqlCommand command, string parameterName, SqlDbType dbType, int size) { AddParameter(command, parameterName, dbType, size, ParameterDirection.Output, null); } public object GetParameterValue(SqlCommand command, string parameterName) { return command.Parameters[parameterName].Value; } #endregion #region Generating SqlCommand private SqlCommand PrepareCommand(CommandType commandType, string commandText) { if (connection == null) { connection = new SqlConnection(this.connectionString); } if (connection.State == ConnectionState.Closed || connection.State == ConnectionState.Broken) { connection.Open(); } SqlCommand command = new SqlCommand(commandText, connection); command.CommandType = commandType; return command; } public SqlCommand GetStoreProcedureCommand(string spname) { return PrepareCommand(CommandType.StoredProcedure, spname); } public SqlCommand GetSqlQueryCommand(string query) { return PrepareCommand(CommandType.Text, query); } #endregion #region Direct Quer public int DirectNonQuery(string query) { SqlCommand sc = GetSqlQueryCommand(query); int iResult = ExecuteNonQuery(sc); return iResult; } public DataTable DirectQuery(string query) { SqlCommand sc = GetSqlQueryCommand(query); return LoadDataTable(sc, string.Empty); } public DataTable DirectQuery(string query, string tableName) { SqlCommand sc = GetSqlQueryCommand(query); return LoadDataTable(sc, string.Empty); } #endregion #region Database Related Command public int ExecuteNonQuery(SqlCommand command) { return command.ExecuteNonQuery(); } public object ExecuteScalar(SqlCommand command) { return command.ExecuteScalar(); } public SqlDataReader ExecuteReader(SqlCommand command) { return command.ExecuteReader(CommandBehavior.CloseConnection); } public SqlDataReader ExecuteReader(SqlCommand command, CommandBehavior commandBehavior) { return command.ExecuteReader(commandBehavior); } public DataTable LoadDataTable(SqlCommand command, string tableName) { using (SqlDataAdapter da = new SqlDataAdapter(command)) { using (DataTable dt = new DataTable(tableName)) { da.Fill(dt); return dt; } } } public DataSet LoadDataSet(SqlCommand command, string[] tableNames) { using (SqlDataAdapter da = new SqlDataAdapter(command)) { using (DataSet ds = new DataSet()) { da.Fill(ds); for (int i = 0; i < ds.Tables.Count;i++) { ds.Tables[i].TableName = tableNames[i]; } return ds; } } } private SqlTransaction PrepareTransaction(IsolationLevel isolationLevel) { if (connection == null) { connection = new SqlConnection(this.connectionString); } if (connection.State == ConnectionState.Closed || connection.State == ConnectionState.Broken) { connection.Open(); } return connection.BeginTransaction(isolationLevel); } public SqlTransaction BeginTransaction() { return PrepareTransaction(IsolationLevel.ReadCommitted); } public SqlTransaction BeginTransaction(IsolationLevel isolationLevel) { return PrepareTransaction(isolationLevel); } public void Commit(SqlTransaction transaction) { if (transaction != null) transaction.Commit(); } public void RollBack(SqlTransaction transaction) { if (transaction != null) transaction.Rollback(); } #endregion #region IDisposable Members public void Dispose() { GC.SuppressFinalize(this); } #endregion #region Destructor ~SqlHelper() { Dispose(); } #endregion void IDisposable.Dispose() { if (connection != null) { if (connection.State == ConnectionState.Open) { connection.Close(); connection.Dispose(); } } } } // end of class } // end of namespace | cs |
'IT > Programming' 카테고리의 다른 글
C# MySQL Helper Class (0) | 2018.07.26 |
---|---|
C#에서 SSH로 원격(Remote)에 있는 MySql 접속하기 (0) | 2018.07.26 |
ExtraGrid 컬럼 Merge하기 (0) | 2016.02.03 |
GridControl에서 Cell에 테두리 그리는 방법 (0) | 2016.01.21 |
ComboBox에 Datatable로 바인딩하기 (0) | 2016.01.14 |