1 Assembly assembly = Assembly.Load("Ruanmou.DB.MySql");//获取当前路径下的dll,不要后缀 2 Assembly assembly1 = Assembly.LoadFile(@"D:\ruanmou\online9\20170607Advan Read More
posted @ 2018-01-28 16:08 ~Jungle Views(416) Comments(0) Diggs(0) Edit
1.泛型引入 泛型方法: 1 /// <summary> 2 /// When You meet some the same things, especially on methods, you could use the generic. 3 /// </summary> 4 class Test Read More
posted @ 2018-01-09 13:46 ~Jungle Views(1523) Comments(0) Diggs(0) Edit
1 using com.DAL.Base; 2 using DAL.ruanmou; 3 using System; 4 using System.Collections.Generic; 5 using System.Data; 6 using System.Linq; 7 using Syste Read More
posted @ 2017-02-23 22:42 ~Jungle Views(247) Comments(0) Diggs(0) Edit
SqlHelp1 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 6 using System.Configuration; 7 using System.D Read More
posted @ 2017-02-17 17:22 ~Jungle Views(189) Comments(0) Diggs(0) Edit
bit 布尔类型 int nvarchar datetime 常用类型 nvarchar(max) 存文章(不超过5000) 字符串 用 '' 1. char/nchar,varchar/nvarchar char(10) 只能放五个中文,定长,如果只放一个字节,后面就是九个空格(一个中文两个字节) nchar(10) 放十个中文,定长 varchar(10)放五个中文,变长,如果只放一... Read More
posted @ 2017-01-20 00:01 ~Jungle Views(239) Comments(0) Diggs(0) Edit
IO 1 <appSettings> 2 <!--日志路径--> 3 <add key="LogPath" value="E:\学习\C#进阶\fsociety\fSociety0\Logs\Log\"/> 4 <add key="LogMovePath" value="E:\学习\C#进阶\fso Read More
posted @ 2016-10-22 00:57 ~Jungle Views(289) Comments(0) Diggs(0) Edit
1 create procedure update_ERPTreeList(@s1 varchar(1000),@s2 varchar(1000)) 2 As 3 Begin 4 declare @ss1 varchar(50),@ss2 int,@ss2_temp varchar(50); 5 declare @ix1 int,@ix2 int,@pos1 int,... Read More
posted @ 2016-05-12 21:51 ~Jungle Views(1387) Comments(0) Diggs(0) Edit