代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
数据库表生成Model
作者:
郑岸以
/ 发布于
2014/10/8
/
756
WPF前台,目前支持SQL Server,配置文件里有Oracle的扩展(待完善),SQl Server使用前需要在网络配置里开启TCP/IP
public partial class MainWindow : Window { private static IDbConnection conn; private CustomerElementConfiguration[] bb; public MainWindow() { InitializeComponent(); } private void comboBox1_DropDownOpened(object sender, EventArgs e) { } private void comboBox1_SelectionChanged(object sender, SelectionChangedEventArgs e) { // 赋值表名 cbTable.Items.Clear(); string type = (comboBox2.SelectedItem as ComboBoxItem).Content.ToString(); string db = (comboBox1.SelectedItem as ComboBoxItem).Content.ToString(); string table = bb.First(item => item.Name == type).GetTable; IDbCommand cmd= conn.CreateCommand(); cmd.CommandText = string.Format(table,db); IDataReader reader = cmd.ExecuteReader(); while (reader.Read()) { cbTable.Items.Add(new ComboBoxItem() { Content = reader["name"].ToString() }); } reader.Close(); } private void comboBox2_SelectionChanged(object sender, SelectionChangedEventArgs e) { string server = this.tbServer.Text; string port = this.tbPort.Text; string userid = this.tbUser.Text; string pwd = this.tbPwd.Text; if (string.IsNullOrWhiteSpace(server) || string.IsNullOrWhiteSpace(port) || string.IsNullOrWhiteSpace(userid)) { MessageBox.Show("填写完左面的信息先!"); return; } try { if (conn != null && conn.State == ConnectionState.Open) { // 先关闭 链接数据库 conn.Close(); conn.Dispose(); } string type=(comboBox2.SelectedItem as ComboBoxItem).Content.ToString(); string db=bb.First(item=>item.Name==type).ConnStr; string conStr = string.Format(db, server, port, userid, pwd); conn =ConnectionFactory.CreateConnection(type,conStr); conn.Open(); // 加载数据库名称 comboBox1.Items.Clear(); IDbCommand cmd = conn.CreateCommand(); cmd.CommandText = bb.First(item => item.Name == type).GetDb; IDataReader reader = cmd.ExecuteReader(); while (reader.Read()) { comboBox1.Items.Add(new ComboBoxItem() { Content = reader["name"].ToString() }); } reader.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void Window_Closed(object sender, EventArgs e) { if (conn != null && conn.State == ConnectionState.Open) { // 先关闭 链接数据库 conn.Close(); conn.Dispose(); } } private void cbTable_SelectionChanged(object sender, SelectionChangedEventArgs e) { string type = (comboBox2.SelectedItem as ComboBoxItem).Content.ToString(); string column = bb.First(item => item.Name == type).GetColumn; string db = (comboBox1.SelectedItem as ComboBoxItem).Content.ToString(); string table = (cbTable.SelectedItem as ComboBoxItem).Content.ToString(); string sql = string.Format(column, db, table); string cla = GenerateHelper.GeneratePoco(conn, sql, table); this.textBlock1.Text = cla; } private void Window_Loaded(object sender, RoutedEventArgs e) { try { CustomSection coll = (CustomSection)ConfigurationManager.GetSection("DbConfigGroup/DbConfig"); IEnumerable<CustomerElementConfiguration> aa = coll.CustomerElements.OfType<CustomerElementConfiguration>(); bb = aa.ToArray<CustomerElementConfiguration>(); // 加载数据库类型 foreach (var b in bb) { comboBox2.Items.Add(new ComboBoxItem { Content=b.Name }); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } }
试试其它关键字
Model
数据库表
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
郑岸以
贡献的其它代码
(
8
)
.
数据库表生成Model
.
实现灰色马尔科夫算法
.
实现带残差修正的灰色算法
.
矩阵伴随矩阵的java实现
.
实现拉格朗日插值法
.
实现牛顿插值法
.
实现高斯赛德尔算法解线性方程组
.
实现SOR算法解线性方程组
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3