摘要: 触发器(trigger)是SQL server 提供给程序员和数据分析员来保证数据完整性的一种方法,它是与表事件相关的特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由事件来触发,比如当对一个表进行操作( insert,delete, update)时就会激活它执行。触发器经常用于加强数 阅读全文
posted @ 2018-01-31 12:01 凌_风 阅读(171) 评论(0) 推荐(0)
摘要: 第一步先对自己要操作的目标进行获取; 第二部对要操作的属性或参数进行改变; 如: <div ng-app="myApp" ng-controller="myController"> ...... <div> 要改变上面div下的某个属性的值首先要通过 var app = angular.module 阅读全文
posted @ 2018-01-30 18:21 凌_风 阅读(103) 评论(0) 推荐(0)
摘要: package com.eduask; import java.util.Comparator;import java.util.Iterator;import java.util.TreeSet; /*"90 -7 0 18 2 45 4" 将字符串中的数值进行排序。使用TreeSet完成。 思路 阅读全文
posted @ 2016-08-10 19:31 凌_风 阅读(129) 评论(0) 推荐(0)
摘要: import java.io.*; public class Writer { public static void main(String [] args){ FileWriter fw = null; try{ fw=new FileWriter("1.txt"); }catch(IOExcep 阅读全文
posted @ 2016-08-01 17:50 凌_风 阅读(105) 评论(0) 推荐(0)
摘要: import java.io.*; public class Reader { public static void main(String[] args) { char[] d = new char[3]; int buf = 0; FileReader fr=null; try{ fr = ne 阅读全文
posted @ 2016-08-01 17:48 凌_风 阅读(110) 评论(0) 推荐(0)
摘要: public class Test { public static void main(String[] args) { Message m = new Message(); new Thread(new SetMessage(m)).start(); new Thread(new GetMessa 阅读全文
posted @ 2016-07-30 15:01 凌_风 阅读(91) 评论(0) 推荐(0)
摘要: public class Exception { int num(int x, int y) { return x / y; } public static void main(String[] args) { Exception ex = new Exception(); try{ //需要被检测 阅读全文
posted @ 2016-07-27 17:20 凌_风 阅读(88) 评论(0) 推荐(0)