上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 157 下一页

2017年5月12日

Ms SQL Server 游标嵌套 初始化数据

摘要: --TRUNCATE TABLE TAB_ROLE_FUNC; --SELECT * FROM TAB_ROLE_FUNC; DECLARE @FUNC_CODE VARCHAR(20), @ROLE_ID BIGINT,@ALLOW_FLAG_DEFAULT BIT = 1; --外层游标 DECLARE CURSOR_ROLE CURSOR FOR SELECT ROLE_ID FROM ... 阅读全文

posted @ 2017-05-12 15:35 freeliver54 阅读(351) 评论(0) 推荐(0)

[转]Oracle中没有 if exists(...)

摘要: 本文转自:http://blog.csdn.net/hollboy/article/details/7550171 对于Oracle中没有 if exists(...) 的语法,目前有许多种解决方法,这里先分析常用的三种,推荐使用最后一种 第一种是最常用的,判断count(*)的值是否为零,如下 首 阅读全文

posted @ 2017-05-12 10:18 freeliver54 阅读(12773) 评论(0) 推荐(0)

2017年5月11日

[转]Entity Framework Fluent API - Configuring and Mapping Properties and Types

摘要: 本文转自:https://msdn.microsoft.com/en-us/data/jj591617#1.2 When working with Entity Framework Code First the default behavior is to map your POCO classes 阅读全文

posted @ 2017-05-11 17:46 freeliver54 阅读(420) 评论(1) 推荐(0)

2017年5月10日

[转]【Oracle Database 12c新特性】32k varchar2 max_string_size

摘要: 本文转自:https://blogs.oracle.com/askmaclean/entry/oracle_database_12c%E6%96%B0%E7%89%B9%E6%80%A7_32k_varchar2 在Oracle Database 12c中,我们可以为varchar2、nvarcha 阅读全文

posted @ 2017-05-10 14:24 freeliver54 阅读(972) 评论(0) 推荐(0)

[转]Entity FrameWork利用Database.SqlQuery<T>执行存储过程并返回参数

摘要: 本文转自;http://www.cnblogs.com/xchit/p/3334782.html 目前,EF对存储过程的支持并不完善。存在以下问题: EF不支持存储过程返回多表联合查询的结果集。 EF仅支持返回返回某个表的全部字段,以便转换成对应的实体。无法支持返回部分字段的情况。 虽然可以正常导入 阅读全文

posted @ 2017-05-10 08:56 freeliver54 阅读(285) 评论(2) 推荐(0)

2017年5月9日

[转]Entity Framework Sprocs with Multiple Result Sets

摘要: 本文转自:https://msdn.microsoft.com/en-us/data/jj691402.aspx Entity Framework Sprocs with Multiple Result Sets Updated: October 23, 2016 Sometimes when us 阅读全文

posted @ 2017-05-09 16:13 freeliver54 阅读(270) 评论(2) 推荐(0)

[转]Add Bootstrap Glyphicon to Input Box

摘要: 本文转自:http://stackoverflow.com/questions/18838964/add-bootstrap-glyphicon-to-input-box How can I add a glyphicon to a text type input box? For example 阅读全文

posted @ 2017-05-09 11:33 freeliver54 阅读(1555) 评论(1) 推荐(0)

2017年5月4日

[转]真正了解CSS3背景下的@font face规则

摘要: 本文转自:http://www.zhangxinxu.com/wordpress/2017/03/css3-font-face-src-local/ by zhangxinxu from http://www.zhangxinxu.com/wordpress/?p=6063本文可全文转载,但需得到原 阅读全文

posted @ 2017-05-04 17:47 freeliver54 阅读(271) 评论(0) 推荐(0)

阿里 研发协同 RDC

摘要: https://helpcdn.aliyun.com/product/51588.html?spm=5176.doc52223.3.1.kgE4YA 阅读全文

posted @ 2017-05-04 17:20 freeliver54 阅读(830) 评论(0) 推荐(0)

华为 软件开发云

摘要: http://support.hwclouds.com/devcloud/index.html 阅读全文

posted @ 2017-05-04 17:15 freeliver54 阅读(520) 评论(0) 推荐(0)

[转]ECMAScript 6 入门 -编程风格

摘要: 本文转自:http://es6.ruanyifeng.com/#docs/style 编程风格 本章探讨如何将ES6的新语法,运用到编码实践之中,与传统的JavaScript语法结合在一起,写出合理的、易于阅读和维护的代码。 多家公司和组织已经公开了它们的风格规范,具体可参阅jscs.info,下面 阅读全文

posted @ 2017-05-04 16:35 freeliver54 阅读(992) 评论(0) 推荐(0)

[转]前端构建工具gulpjs的使用介绍及技巧

摘要: 本文转自:http://www.cnblogs.com/2050/p/4198792.html gulpjs是一个前端构建工具,与gruntjs相比,gulpjs无需写一大堆繁杂的配置参数,API也非常简单,学习起来很容易,而且gulpjs使用的是nodejs中stream来读取和操作数据,其速度更 阅读全文

posted @ 2017-05-04 14:45 freeliver54 阅读(412) 评论(0) 推荐(0)

[转]How to use an Area in ASP.NET Core

摘要: 本文转自:http://stackoverflow.com/questions/36535511/how-to-use-an-area-in-asp-net-core Q: How does one use an Area in ASP.NET Core? This is not properly 阅读全文

posted @ 2017-05-04 09:48 freeliver54 阅读(233) 评论(1) 推荐(0)

2017年5月3日

[转]简介Gulp, Grunt, Bower, 和 Npm 对Visual Studio的支持

摘要: 本文转自:http://www.cnblogs.com/whitewolf/p/4009199.html [原文发表地址]Introducing Gulp, Grunt, Bower, and npm support for Visual Studio Web 开发,特别是前端 Web 开发,正迅速 阅读全文

posted @ 2017-05-03 11:17 freeliver54 阅读(229) 评论(0) 推荐(0)

2017年4月28日

[转]TypeScript Quick start

摘要: 本文转自:http://www.typescriptlang.org/docs/tutorial.html Quick start Get started with a simple TypeScript app. Let’s get started by building a simple web 阅读全文

posted @ 2017-04-28 11:20 freeliver54 阅读(364) 评论(0) 推荐(0)

[转]Using MVC 6 And AngularJS 2 With .NET Core

摘要: 本文转自:http://www.c-sharpcorner.com/article/using-mvc-6-and-angularjs-2-with-net-core/ CoreMVCAngular2.zip Download 100% FREE Spire Office APIs Download 阅读全文

posted @ 2017-04-28 11:06 freeliver54 阅读(510) 评论(0) 推荐(0)

2017年4月24日

微信小程序 三元运算 checked

摘要: 预期效果: 根据用户性别,显示radio group,并将相应radio checked 代码如下: <view class="form-line"> <view wx:if="{{userInfo.gender == '1' }}">性别:</view> <radio-group> <radio 阅读全文

posted @ 2017-04-24 10:49 freeliver54 阅读(6847) 评论(3) 推荐(0)

2017年4月21日

[转]weui-wxss WeUI for 小程序 为微信小程序量身设计

摘要: 本文转自:https://github.com/weui/weui-wxss/?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io 阅读全文

posted @ 2017-04-21 18:06 freeliver54 阅读(2186) 评论(0) 推荐(0)

[转]微信小程序-template模板使用

摘要: 本文转自:http://blog.csdn.net/u013778905/article/details/59646241 如下图,我在做华企商学院小程序的时候,课程搜索结果页和课程列表页结构是完全一样的,这时就非常适合使用模板来完成页面搭建。实现一次定义,到处使用。 模板 一、定义模板 1、新建一 阅读全文

posted @ 2017-04-21 11:21 freeliver54 阅读(3169) 评论(0) 推荐(0)

2017年4月20日

[转]微信小程序登录数据解密以及状态维持

摘要: 本文转自:http://www.cnblogs.com/cheesebar/p/6689326.html 学习过小程序的朋友应该知道,在小程序中是不支持cookie的,借助小程序中的缓存我们也可以存储一些信息,但是对于一些比较重要的信息,我们需要通过登录状态维持来保存,同时,为了安全起见,用户的敏感 阅读全文

posted @ 2017-04-20 15:01 freeliver54 阅读(1030) 评论(3) 推荐(0)

上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 157 下一页

导航