摘要: EXECUTE sp_addextendedproperty N'MS_Description', '用户积分', N'user', N'dbo', N'table', N'Account', N'column', N'TotalScore' 阅读全文
posted @ 2022-01-20 17:00 极客船长 阅读(113) 评论(0) 推荐(0) 编辑
摘要: alter table clocom_scm_orders add default 0 for order_money;- 阅读全文
posted @ 2022-01-20 16:59 极客船长 阅读(54) 评论(0) 推荐(0) 编辑
摘要: alter table clocom_scm_orders drop constraint constraintName 阅读全文
posted @ 2022-01-20 16:58 极客船长 阅读(26) 评论(0) 推荐(0) 编辑
摘要: alter table clocom_scm_orders alter column order_money decimal(18,2) 阅读全文
posted @ 2022-01-20 16:58 极客船长 阅读(96) 评论(0) 推荐(0) 编辑
摘要: exec sp_helpconstraint tablename 阅读全文
posted @ 2022-01-20 16:57 极客船长 阅读(39) 评论(0) 推荐(0) 编辑
摘要: var startDate = laydate.render({ elem: '#startDay',//开始时间选择控件id max: $('#endDay').val(), type: 'date', value: $('#startDay').val(), done: function (va 阅读全文
posted @ 2022-01-05 14:30 极客船长 阅读(268) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// ZIP:压缩文件夹 /// </summary> /// <param name="DirectoryToZip">需要压缩的文件夹(绝对路径)</param> /// <param name="ZipedPath">压缩后的文件路径(绝对路径)</param> 阅读全文
posted @ 2021-12-28 19:25 极客船长 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 先描述一下问题产生,对接华为云接口时,由于返回请求错误,对方服务器返回400,415,等错误,然而这种异常内包含某些对方返回的信息,普通的如果post方法内未进行Response的异常处理,那么恭喜你,你悲剧了,获取到的信息就是这些“Exception:远程服务器返回错误: (500) 内部服务器错 阅读全文
posted @ 2021-12-28 19:22 极客船长 阅读(1896) 评论(1) 推荐(0) 编辑
摘要: WebUploader简述 具有两套运行时支持:HTML5与FLASH 分片、并发 预览、压缩 多途径添加文件 MD5验证 引入文件 虽然官方没说必须要引入JQuery库,但实际上需要引入 <!--引入CSS--> <link rel="stylesheet" type="text/css" hre 阅读全文
posted @ 2021-12-25 13:49 极客船长 阅读(2379) 评论(0) 推荐(0) 编辑
摘要: public static string PostRequest(string postUrl, string paramData) { string ret = string.Empty; try { byte[] byteArray = Encoding.UTF8.GetBytes(paramD 阅读全文
posted @ 2021-12-24 17:32 极客船长 阅读(230) 评论(0) 推荐(0) 编辑