摘要:
/****** Object: StoredProcedure [dbo].[sp_http_get] Script Date: 05/23/2020 15:47:09 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE P 阅读全文
摘要:
已安装好的 Eclipse IDE help > install new software 打开窗口 输入地址 http://eclipse-color-theme.github.io/update/ 一直等,等到什么时候就不知道了,据听说国内很少有在退休的时候等到结果,我是这么做的 直接在浏览器里 阅读全文
摘要:
ExtJs项目使用sencha app build编译以后,浏览时很容易抛出Uncaught TypeError: c is not a constructor的错误,而且会加载没有名称的js,例如 出现这种问题时,系统往往无法正常预览,但是可以通过以下方式进行解决: 编译完成以后进入 项目根目录\ 阅读全文
摘要:
select a.name as 表名,max(b.rows) as 记录条数 from sysobjects a,sysindexes b where a.id=b.id and a.xtype='u' group by a.name order by max(b.rows) desc 阅读全文