EmpPhotoData.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
- using System;
- using System.Data;
- using System.Data.SqlClient;
- namespace qminoa.Common.Data
- {
- /// <summary>
- /// EmpPhotoData 的摘要说明。
- /// </summary>
- public class EmpPhotoData :DataSet
- {
- //定义表名
- public const string EMPPHOTO_TABLE_NAME = "mrPhoto";
- public const string CONTENT_FIELD = "Content";
- //创建表结构
- private void BuildTable()
- {
- DataTable table = new DataTable(EMPPHOTO_TABLE_NAME);
- DataColumnCollection cols = table.Columns;
- for(int i=1;i<6;i++)
- {
- cols.Add(CONTENT_FIELD+i.ToString(),typeof(System.String));
- }
- Tables.Add(table);
- }
- public EmpPhotoData()
- {
- BuildTable();
- }
- }
- }