• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






永远相信美好的事情即将发生

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

06 2016 档案

 
微信
摘要:<1>内网地址映射成外网地址: ngrok http 8080 阅读全文
posted @ 2016-06-27 21:04 天空极限 阅读(113) 评论(0) 推荐(0)
微信开发
摘要:<1>订阅号:只能发消息;服务号:发消息,导航菜单;企业号:发消息,导航菜单,应用中心,通讯录 阅读全文
posted @ 2016-06-26 19:53 天空极限 阅读(103) 评论(0) 推荐(0)
sqlserver存取过程游标
摘要:ALTER proc [dbo].[common_proc_temp2] as begin declare @id varchar(50); declare @cbcontractid varchar(50); declare @xh int ; declare owner_03_cursor cu 阅读全文
posted @ 2016-06-19 21:42 天空极限 阅读(280) 评论(0) 推荐(0)
sqlserver存取过程-游标
摘要:ALTER proc [dbo].[common_proc_temp2] as begin declare @id varchar(50); declare @cbcontractid varchar(50); declare @xh int ; declare owner_03_cursor cu 阅读全文
posted @ 2016-06-19 21:39 天空极限 阅读(145) 评论(0) 推荐(0)
sqlserver创建,调用 带返回值存取过程
摘要:<1>create: ALTER proc [dbo].[common_proc] @sql1 varchar(5000), @sql2 varchar(5000) OUTPUT as begin set @sql2=@sql1+''; end; <2>call: exec [dbo].[commo 阅读全文
posted @ 2016-06-19 21:34 天空极限 阅读(302) 评论(0) 推荐(0)
cenos 7常用操作
摘要:centos 虚拟机 <一>设置ip <1>虚拟机配置ip 虚拟机->设置->网络适配器->设置NAT模式 <2>编辑->虚拟网络编辑器,对NAT模式设置子网地址和网关 <3>查看ip 命令: ip addr <4>命令自动补全:按 tab键 <二>命令: cd / 进入根目录 ls 查看 目录下的 阅读全文
posted @ 2016-06-06 22:53 天空极限 阅读(367) 评论(0) 推荐(0)
spring+junit单元测试
摘要:<1>读取文件: 配置文件在classes下:locations = {"classpath*:/spring/applicationContext.xml"} 配置文件在web-inf下:locations = {"file:web/WEB-INF/applicationContext.xml"} 阅读全文
posted @ 2016-06-04 22:57 天空极限 阅读(196) 评论(0) 推荐(0)