开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 122

mastersoft/DevelopAssistant

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
DataBaseServer.cs 14.67 KB
一键复制 编辑 原始数据 按行查看 历史
wxd_tony1984 提交于 2020年06月16日 22:01 +08:00 . 一些修改
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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevelopAssistant.Service
{
[Serializable]
public class ConnectionSection
{
public string Key { get; set; }
public string Value { get; set; }
public ConnectionSection(string connectionSection)
{
string[] list = connectionSection.Split('=');
this.Key = list[0];
this.Value = list[1];
}
}
public enum DataBaseLoginStyle
{
Integrated_Security=0,
SqlServer_Identity=1
}
[Serializable]
public class DataBaseServer : ICloneable
{
public string ID { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public string Company { get; set; }
public string ConnectionString { get; set; }
public string ProviderName { get; set; }
/// <summary>
/// 数据文件路径
/// </summary>
public string DataFilePath { get; set; }
public string Server { get; set; }
public string Instance_Name { get; set; }
public string Port { get; set; }
public string DataBaseName { get; set; }
public DataBaseLoginStyle DataBaseLoginStyle { get; set; }
public string UserID { get; set; }
public string Password { get; set; }
/// <summary>
/// 是否连接中
/// </summary>
public bool OnConnecting { get; set; }
/// <summary>
/// 数据表集合
/// </summary>
public List<Table> Tables { get; set; }
/// <summary>
/// 数据视图集合
/// </summary>
public List<View> Views { get; set; }
/// <summary>
/// 函数集合
/// </summary>
public List<Function> Functions { get; set; }
/// <summary>
/// 存储过程集合
/// </summary>
public List<Procedure> Procedures { get; set; }
public List<Keyword> Keywords { get; set; }
public ICSharpCode.WinFormsUI.Controls.NTreeNode DataBaseServerNode { get; set; }
public bool AllObject { get; set; }
public DataBaseServer()
{
this.ID = Guid.NewGuid().ToString();
this.Tables = new List<Table>();
this.Views = new List<View>();
this.Functions = new List<Function>();
this.Procedures = new List<Procedure>();
this.DataBaseLoginStyle = DataBaseLoginStyle.SqlServer_Identity;
this.AllObject = false;
}
public DataBaseServer(string ConnectionString, string ProviderName):this()
{
this.ConnectionString = ConnectionString;
this.ProviderName = ProviderName;
Parse();
}
public void Parse()
{
if (!String.IsNullOrEmpty(ConnectionString) && !String.IsNullOrEmpty(ProviderName))
{
string[] conectionSections = ConnectionString.Split(';');
Dictionary<string, ConnectionSection> list = new Dictionary<string, ConnectionSection>();
foreach (string connectionSection in conectionSections)
{
if (!string.IsNullOrEmpty(connectionSection))
{
ConnectionSection conns = new ConnectionSection(connectionSection);
list.Add(conns.Key, conns);
}
}
//C:\Users\Administrator\Desktop\Ly.BDF\Ly.BDF\Ly.BDF.WebApp\App_Data\fasdb.db
string Data_Server = String.Empty;
switch (ProviderName)
{
case "System.Data.SQL":
string _instance = String.Empty;
string _port = String.Empty;
string _server = list["Server"].Value;
if (_server.IndexOf("\\") > 0)
{
_instance = _server.Substring(_server.LastIndexOf("\\"));
}
if (_server.IndexOf(",")>0)
{
_port = _server.Substring(_server.LastIndexOf(","));
}
if (!string.IsNullOrEmpty(_instance))
{
_port = _port.Replace(_instance, "");
_server = _server.Replace(_instance, "");
}
if (!string.IsNullOrEmpty(_port))
{
_server = _server.Replace(_port, "");
}
this.Port = _port.Replace(",","");
this.Server = _server.Replace ("http:\\","");
this.Instance_Name = _instance.Replace("\\","");
this.DataBaseName = list["Initial Catalog"].Value;
if (list.ContainsKey("Integrated Security"))
{
this.DataBaseLoginStyle = DataBaseLoginStyle.Integrated_Security;
this.UserID = "";
this.Password = "";
}
else
{
this.DataBaseLoginStyle = DataBaseLoginStyle.SqlServer_Identity;
this.UserID = list["User ID"].Value;
this.Password = list["Pwd"].Value;
}
this.Company = "Microsoft";
this.Version = "Sql Server 2008";
break;
case "System.Data.Sqlite":
case "System.Data.SQLite":
Data_Server = list["Data Source"].Value;
this.Server = Data_Server;
this.DataFilePath = Data_Server;
this.DataBaseName = Data_Server.Substring(Data_Server.LastIndexOf("\\") + 1);
this.Password = list.ContainsKey("Password") ? list["Password"].Value : "";
break;
case "System.Data.MySql":
Data_Server = list["Server"].Value;
this.Server = Data_Server;
this.Port = list["Port"].Value;
this.Instance_Name = "";
this.DataBaseName = list["Database"].Value;
this.UserID = list["uid"].Value;
this.Password = list["pwd"].Value;
break;
case "System.Data.PostgreSql":
Data_Server = list["Server"].Value;
this.Server = Data_Server;
this.Port = list["Port"].Value;
this.Instance_Name = "";
this.DataBaseName = list["Database"].Value;
this.UserID = list["User Id"].Value;
this.Password = list["Password"].Value;
this.Company = "未知";
this.Version = "PostgreSql 11.23";
break;
}
list.Clear();
}
else
{
//ConnectionString="Data Source=C:\Users\Administrator\Desktop\Ly.BDF\Ly.BDF\Ly.BDF.WebApp\App_Data\fasdb.db;Version=3;Password=4HxbajmTkLY=;UseUTF16Encoding=True;";
//ConnectionString = "Server=192.168.0.2;Initial Catalog=LingyunDevelopFramework_Base;User ID=sa;Pwd=fineex.com;";
string _connectionString = String.Empty;
switch (this.ProviderName)
{
case "System.Data.Sql":
_connectionString = "Server="+this.Server;
if (!string.IsNullOrEmpty(this.Port))
{
_connectionString += ":" + this.Port;
}
if (!string.IsNullOrEmpty(this.Instance_Name))
{
_connectionString += "\\"+this.Instance_Name;
}
_connectionString += ";";
_connectionString += "Initial Catalog="+this.DataBaseName+";";
if (this.DataBaseLoginStyle == DataBaseLoginStyle.Integrated_Security)
{
_connectionString += "Integrated Security=SSPI;";
}
else
{
_connectionString += "User ID="+this.UserID+";";
_connectionString += "Pwd="+this.Password+";";
}
break;
case "System.Data.PostgreSql":
_connectionString = "Server="+this.Server+";";
_connectionString += "Port=" + this.Port + ";";
_connectionString += "Database=" + this.DataBaseName + ";";
_connectionString += "User ID="+this.UserID+";";
_connectionString += "Pwd=" + this.Password + ";";
_connectionString += "CommandTimeout=0;";
//_connectionString += "ConnectionLifeTime=0;";
break;
}
ConnectionString = _connectionString;
}
CreateKeyWords(ProviderName);
}
public object Clone()
{
return this.MemberwiseClone();
}
public void CreateKeyWords(string ProviderName)
{
this.Keywords = new List<Keyword>();
this.Keywords.Add(new Keyword() { Text = "AS" });
this.Keywords.Add(new Keyword() { Text = "AND" });
this.Keywords.Add(new Keyword() { Text = "ASC" });
this.Keywords.Add(new Keyword() { Text = "ALTER" });
this.Keywords.Add(new Keyword() { Text = "ALTER TABLE" });
this.Keywords.Add(new Keyword() { Text = "ALTER PROCEDURE" });
this.Keywords.Add(new Keyword() { Text = "BETWEEN" });
this.Keywords.Add(new Keyword() { Text = "SELECT" });
this.Keywords.Add(new Keyword() { Text = "SELECT TOP",Description="只有SQL Server Access 数据库支持" });
this.Keywords.Add(new Keyword() { Text = "SET" });
this.Keywords.Add(new Keyword() { Text = "SUM", Description = "求和函数" });
this.Keywords.Add(new Keyword() { Text = "BY" });
this.Keywords.Add(new Keyword() { Text = "CREATE" });
this.Keywords.Add(new Keyword() { Text = "CASE" });
this.Keywords.Add(new Keyword() { Text = "CREATE TABLE", Description = "创建表" });
this.Keywords.Add(new Keyword() { Text = "CREATE VIEW", Description = "创建视图" });
this.Keywords.Add(new Keyword() { Text = "CREATE PROCEDURE", Description = "创建存储过程 CREATE PROCEDURE <Procedure_Name, sysname, ProcedureName> ..." });
this.Keywords.Add(new Keyword() { Text = "COUNT", Description = "统计数量" });
this.Keywords.Add(new Keyword() { Text = "DISTINCT" });
this.Keywords.Add(new Keyword() { Text = "DELETE", Description = "删除数据" });
this.Keywords.Add(new Keyword() { Text = "DECLARE", Description = "定义变量" });
this.Keywords.Add(new Keyword() { Text = "FROM" });
this.Keywords.Add(new Keyword() { Text = "IN" });
this.Keywords.Add(new Keyword() { Text = "INSERT" });
this.Keywords.Add(new Keyword() { Text = "WHERE" });
this.Keywords.Add(new Keyword() { Text = "WITH" });
this.Keywords.Add(new Keyword() { Text = "LIKE" });
this.Keywords.Add(new Keyword() { Text = "LEFT" });
this.Keywords.Add(new Keyword() { Text = "RIGHT" });
this.Keywords.Add(new Keyword() { Text = "LEFT JOIN", Description = "左连接语句" });
this.Keywords.Add(new Keyword() { Text = "RIGHT JOIN", Description = "右连接语句" });
this.Keywords.Add(new Keyword() { Text = "INTO" });
this.Keywords.Add(new Keyword() { Text = "TOP" });
this.Keywords.Add(new Keyword() { Text = "TABLE" });
this.Keywords.Add(new Keyword() { Text = "VIEW" });
this.Keywords.Add(new Keyword() { Text = "ON" });
this.Keywords.Add(new Keyword() { Text = "NOLOCK",Description="不加锁允许脏读" });
this.Keywords.Add(new Keyword() { Text = "HAVING" });
this.Keywords.Add(new Keyword() { Text = "OFFSET" });
this.Keywords.Add(new Keyword() { Text = "ORDER" });
this.Keywords.Add(new Keyword() { Text = "ORDER BY" });
this.Keywords.Add(new Keyword() { Text = "GROUP BY" });
this.Keywords.Add(new Keyword() { Text = "GROUP" });
this.Keywords.Add(new Keyword() { Text = "GO" });
this.Keywords.Add(new Keyword() { Text = "OR" });
this.Keywords.Add(new Keyword() { Text = "PROCEDURE" });
this.Keywords.Add(new Keyword() { Text = "UPDATE" });
this.Keywords.Add(new Keyword() { Text = "DROP", Description = "删除结构如:drop table" });
this.Keywords.Add(new Keyword() { Text = "DESC" });
this.Keywords.Add(new Keyword() { Text = "INNER JOIN" });
this.Keywords.Add(new Keyword() { Text = "LIMIT" });
}
public bool IsKeyWords(string input)
{
bool rvl = false;
if (this.Keywords != null)
{
foreach (Keyword key in this.Keywords)
{
if (key.Text.Equals(input, StringComparison.OrdinalIgnoreCase))
{
rvl = true;
break;
}
}
}
return rvl;
}
public bool IsFunctions(string input)
{
bool rvl = false;
foreach (Function fun in this.Functions)
{
if (fun.Name.Equals(input, StringComparison.OrdinalIgnoreCase))
{
rvl = true;
break;
}
}
return rvl;
}
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

开发助手是一款面向开发人员的辅助助手,它集数据库管理(目前支持sqlserver,sqlite,mysql,postgresql),代码生成(支持从数据库生成实体映射类,数据库操作DAL中间层),数据库文档生成,代码收藏夹(支持C#,SQL,Javascrip,Html,XML,Python语法高亮),富文本编辑,插件管理等功能模块。自2015年到如今,它已经历过4个重大版本的升级,径过不断修复和完善,目前已成为一款堪称得心应手的开发辅助工具。
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/mastersoft/DevelopAssistant.git
git@gitee.com:mastersoft/DevelopAssistant.git
mastersoft
DevelopAssistant
DevelopAssistant
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /