在学习牛腩的时候我第一次正式在SQL Server 实现了触发器,他与存储过程很相似,可以说触发器是一种特殊类型的存储过程,但触发器主要是通过事件进行触发被自动调用执行的,而存储过程可以通过存储过程的名称被调用。
1,创建触发器
-- ================================================
-- Template generated from Temp...
分类:
数据库 时间:
2015-08-01 01:07:20
阅读次数:
164
测试代码如下
import java.util.ArrayList;
import java.util.LinkedList;
public class arraylistPKlinkedlist {
public static void main(String[] args) {
// TODO Auto-generated method stub
arr...
分类:
其他好文 时间:
2015-07-29 17:15:44
阅读次数:
95
#$language = "VBScript"#$interface = "1.0"crt.Screen.Synchronous = True' This automatically generated script may need to be' edited in order to work c...
分类:
其他好文 时间:
2015-07-29 11:44:22
阅读次数:
135
private int mIndex;public HomeItem(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
mContext = context;
TypedArray attrs_index = context.o...
分类:
移动开发 时间:
2015-07-22 18:56:01
阅读次数:
164
1.必须要开子线程来操作耗时操作,android.os.NetworkOnMainThreadExceptionnew Thread(new Runnable() { @Override public void run() { // TODO Auto-generated met...
分类:
移动开发 时间:
2015-07-21 16:54:09
阅读次数:
186
TutorialsTo create a customized scaffolder, seeCreating a Custom Scaffolder for Visual Studio.To customize the generated files, seeHow to customize th...
分类:
Web程序 时间:
2015-07-21 12:38:23
阅读次数:
161
HttpURLConnection是java提供的用于网络访问的类。
get请求方式:
public class HttpURLGET {
//HttpURLConnection类获取服务器一张图片
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
URL...
分类:
编程语言 时间:
2015-07-18 15:39:09
阅读次数:
173
具体代码实现参考:手动设置选择特征的个数http://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.RFE.html#sklearn.feature_selection.RFE通过交叉验证自动选择最优特征个数:...
分类:
其他好文 时间:
2015-07-16 21:23:41
阅读次数:
130
package javase; public class Demo0422 { public static void main(String[] args) { // TODO Auto-generated method stub //char 2位 , byte 字节 , short 2字节 , ...
分类:
其他好文 时间:
2015-07-15 16:44:29
阅读次数:
92
Triangle, square, pentagonal, hexagonal, heptagonal, and octagonal numbers are all figurate (polygonal) numbers and are generated by the following formulae:
Triangle
P3,n=n(n+1)/2
1, 3,...
分类:
其他好文 时间:
2015-07-14 18:23:07
阅读次数:
83