在编写注解的时候需要了解的四种注解:@Target 表示该注解可以用于什么地方,可能的ElementType参数有:CONSTRUCTOR:构造器的声明FIELD:域声明(包括enum实例)LOCAL_VARIABLE:局部变量声明METHOD:方法声明PACKAGE:包声明PARAMETER:参....
分类:
编程语言 时间:
2014-11-02 00:36:53
阅读次数:
219
.after()Insert content, specified by the parameter, after each element in the set of matched elements.jQuery官网中的3个Example都使用的是 .after( content [, cont...
前言: 线上oracle数据库有张表的数据有些乱,根据应用db的log和应用的log也没有检查出来谁修改了,所以决定把这张单表做个详细的insert、update、delete监控。一:使用数据库自带的审计功能1,查看审计功能是否启动SQL> show parameter audit ...
分类:
数据库 时间:
2014-10-31 20:39:08
阅读次数:
373
SQL Server函数是一种封装一条或多条SQL语句的结构。
SQL Server函数分为系统函数和用户自定义函数两种。
标量值函数:标量值函数的返回值是基本数据类型的单个值或单个值得表达式。
函数体既可以是一条语句,也可以是多条语句。
创建标量值函数
语法:
CREATE FUNCTION [schema_name.]function_name([{@parameter_name ...
分类:
数据库 时间:
2014-10-31 19:10:25
阅读次数:
315
1, 拼接sql时, exec sp_executesql @sql报错“Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.” 这是因为@sql类型应该为nvarchar()================...
分类:
其他好文 时间:
2014-10-31 01:04:52
阅读次数:
341
$h = Get-SPServiceHostconfig$h.Provision()$services = Get-SPServiceApplicationforeach ($service in $services) { $service.provision(); write-host $serv...
分类:
移动开发 时间:
2014-10-29 19:19:03
阅读次数:
365
public class BinaryToImageConverter:IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if...
分类:
数据库 时间:
2014-10-29 14:27:05
阅读次数:
227
在数字逻辑电路中,经常需要设计分频电路,本文是通过Verilog HDL实现了奇数次分频。以下是设计程序源代码:module freq_div( // Input clk_50, rst_n, // Output clk_div2, clk_div5 ); parameter DIV...
分类:
其他好文 时间:
2014-10-28 21:21:23
阅读次数:
150
The ref keyword causes an argument to be passed by reference, not by value. The effect of passing by reference is that any
change to the parameter in the called method is reflected in the calling me...
??
A variable of a
reference type does not contain its data directly; it contains a reference to its data.
When you pass a reference-type parameter by value, it is possible to change the data poin...