会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
代小二啊
博客园
首页
新随笔
联系
订阅
管理
2019年3月18日
sqlcmd 执行SQL语句或没有足够的内存来执行脚本
摘要: win+r命令提示框里面输入cmd sqlcmd -S . -U username -P password -d database -i url -S 数据库地址 -U 登录名称 -P 密码 -d 数据库名称 -i sql文件地址 注意空格和地址
阅读全文
posted @ 2019-03-18 11:34 代小二啊
阅读(437)
评论(0)
推荐(0)
2019年3月14日
c# list修改某一个属性的值
摘要: public class info() { public string name{get;set;} public string age{get;set;} } list<info> list = new list<info>(); list.ForEach(i=> { if(i.name=="xx
阅读全文
posted @ 2019-03-14 15:12 代小二啊
阅读(9786)
评论(0)
推荐(0)
2019年3月12日
c# 前后日期设置
摘要: List<string> list = new List<string>(); //根据当月 显示前6个月 for(int i=0;i<6;i++) { list.add(DateTime.Now.AddMonths(i*-1).Tostring()); }
阅读全文
posted @ 2019-03-12 11:14 代小二啊
阅读(198)
评论(0)
推荐(0)
公告