摘要:
字符串拼接的几种方式: 1. 使用@ 符 string a1 = ""; string a2 = ""; string sql = @"select * from *** where id='" + a1 + @"' ,name='" + a2 + " ' "; string sql = @"sel 阅读全文
摘要:
// 设计连接数据库的字符串方法 using System.Data.SqlClient; 使用sqlConnectionStringBuilder类 SqlConnectionStringBuilder sc = new SqlConnectionStringBuilder (); sc.Data 阅读全文
摘要:
使用vs2019 创建winform项目 详细代码如下: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Sy 阅读全文