摘要:-- 插入 insert into [CHOLPOR].[dbo].[t_image](id, name) select '1', BulkColumn from openrowset(bulk N'e:\1.jpg', single_blob) as blob; -- 更新 update dbo.EArcImage set EArcImage = (select BulkColumn fro...
阅读全文
摘要:$(".chosen—select").find("option[value='1']").attr("selected", "selected"); //默认选中value=1的项 $('.chosen-select').chosen(); //初始化加载 $(document).ready(function() { $('#attackSourceId').change(funct...
阅读全文
摘要:1、SqlServer连续新增参数限制 com.microsoft.sqlserver.jdbc.SQLServerException: 传入的请求具有过多的参数。该服务器支持最多 2100 个参数。请减少参数的数目,然后重新发送该请求。 2、$.cookie 针对iframe存在作用域的问题 co
阅读全文
摘要:1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 daemonize no 2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定 pidfile /var/run/redis
阅读全文