首页 > 代码库 > oledb,odbc简易实体生成器.

oledb,odbc简易实体生成器.

DataSet to code file(C#)工具.

方便自己写的odbc或者oledb的东西用的.

sql server或者oracle等大数据库已经有EF的支持.

一些其他数据库还是用oledb,odbc用的多,只有自己写生成实体类的工具了.

动软也是支持oledb,不过不支持odbc.

 

/******************************************************************************** @remarks Modified by [Takaya Code]* @ version  1.0* @ Author: Takaya* Modified at: 2015-01-11 22:40* Memo:    * Copyright (C) Takaya Code * All rights reserved.*******************************************************************************/using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Model{    public class Shohin    {        public System.String shohin_id { get; set; }        public System.String shohin_mei { get; set; }        public System.String shohin_bunrui { get; set; }        public System.Int32 hanbai_tanka { get; set; }        public System.Int32 shiire_tanka { get; set; }        public System.DateTime torokubi { get; set; }    }}

 

 

追加说明下使用方法:

1.SqlQuery.txt

为获得表结构的语句,根据数据库不同自行修改. {0}是程序用的表名.

2.Template.txt 

是模板,可以自行修改.

 

默认生成文件到 程序的 result目录下.

 

http://sf.mcdaily-hk.net/uploads/file/201501/20150111075658_98052.rar
7z文件 

或者

http://pan.baidu.com/s/1qWAyFtM

yu3h

 

很简陋的东西,谁都会写的.请勿期待过高.orz.

oledb,odbc简易实体生成器.