锘??xml version="1.0" encoding="utf-8" standalone="yes"?>天天爽天天狠久久久,a视频在线看,jizz日韩http://www.aygfsteel.com/snbna/archive/2006/11/16/81577.htmlsnbnasnbnaThu, 16 Nov 2006 10:06:00 GMThttp://www.aygfsteel.com/snbna/archive/2006/11/16/81577.htmlhttp://www.aygfsteel.com/snbna/comments/81577.htmlhttp://www.aygfsteel.com/snbna/archive/2006/11/16/81577.html#Feedback0http://www.aygfsteel.com/snbna/comments/commentRss/81577.htmlhttp://www.aygfsteel.com/snbna/services/trackbacks/81577.htmlCREATE OR REPLACE TRIGGER InventoryOthersMstrUpdate
BEFORE INSERT OR UPDATE聽 ON INVENTORY_OTHERS_MSTR
FOR EACH ROW
BEGIN
聽 IF (:NEW.TOTL_LEFT<>:OLD.TOTL_LEFT
聽聽聽聽 OR :NEW.TOTL_QTY<>:OLD.TOTL_QTY
聽 OR :NEW.TOTL_RESERVED<>:OLD.TOTL_RESERVED
聽 OR :NEW.HCARE_RESERVED_QTY<>:OLD.HCARE_RESERVED_QTY)
聽 THEN INSERT INTO INVENTORY_OTHERS_MSTR_TRACE (OTHERS_MSTR_ID, CATALOGUE_MSTR_ID, LAST_UPDATED_BY, LAST_UPDATED_ON, LAST_UPDATED_AT, CHECK_IND, LOCK_IND, LOC_IND, MAINTAIN_QTY, TOTL_QTY, TOTL_RESERVED, TOTL_LEFT, TOTL_LOAN, HCARE_RESERVED_QTY, LOC_ID)
聽 VALUES (:OLD.OTHERS_MSTR_ID, :OLD.CATALOGUE_MSTR_ID,
聽聽聽聽聽聽聽聽聽 :OLD.LAST_UPDATED_BY, :OLD.LAST_UPDATED_ON,
聽聽聽 :OLD.LAST_UPDATED_AT, :OLD.CHECK_IND, :OLD.LOCK_IND, :OLD.LOC_IND, :OLD.MAINTAIN_QTY, :OLD.TOTL_QTY, :OLD.TOTL_RESERVED, :OLD.TOTL_LEFT, :OLD.TOTL_LOAN, :OLD.HCARE_RESERVED_QTY, :OLD.LOC_ID);
聽 END IF;
END;
/

鍙傝冿細http://www.chinaunix.net/jh/21/21696.html

snbna 2006-11-16 18:06 鍙戣〃璇勮
]]>
鑾峰緱濮撳悕棣栧瓧姣嶇殑綾?/title><link>http://www.aygfsteel.com/snbna/archive/2005/12/08/22996.html</link><dc:creator>snbna</dc:creator><author>snbna</author><pubDate>Thu, 08 Dec 2005 09:34:00 GMT</pubDate><guid>http://www.aygfsteel.com/snbna/archive/2005/12/08/22996.html</guid><wfw:comment>http://www.aygfsteel.com/snbna/comments/22996.html</wfw:comment><comments>http://www.aygfsteel.com/snbna/archive/2005/12/08/22996.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/snbna/comments/commentRss/22996.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/snbna/services/trackbacks/22996.html</trackback:ping><description><![CDATA[<P>package com.scs.common.function;</P> <P>public class GetCh2Spell {<BR>  public static int compare(String str1, String str2) {<BR>    int result = 0;<BR>    String m_s1 = null;<BR>    String m_s2 = null;<BR>    try {<BR>      m_s1 = new String(str1.getBytes(_FromEncode_), _ToEncode_);<BR>      m_s2 = new String(str2.getBytes(_FromEncode_), _ToEncode_);<BR>    }<BR>    catch (Exception e) {<BR>      return str1.compareTo(str2);<BR>    }<BR>    result = chineseCompareTo(m_s1, m_s2);<BR>    return result;<BR>  }</P> <P>  public static int getCharCode(String s) {<BR>    if (s == null && s.equals("")) {<BR>      return -1;<BR>    }<BR>    byte b[] = s.getBytes();<BR>    int value = 0;<BR>    for (int i = 0; i < b.length && i <= 2; i++) {<BR>      value = value * 100 + b[i];<BR>    }</P> <P>    return value;<BR>  }</P> <P>  public static int chineseCompareTo(String s1, String s2) {<BR>    int len1 = s1.length();<BR>    int len2 = s2.length();<BR>    int n = Math.min(len1, len2);<BR>    for (int i = 0; i < n; i++) {<BR>      int s1_code = getCharCode(s1.charAt(i) + "");<BR>      int s2_code = getCharCode(s2.charAt(i) + "");<BR>      if (s1_code * s2_code < 0) {<BR>        return Math.min(s1_code, s2_code);<BR>      }<BR>      if (s1_code != s2_code) {<BR>        return s1_code - s2_code;<BR>      }<BR>    }</P> <P>    return len1 - len2;<BR>  }</P> <P>  public static String getBeginCharacter(String res) {<BR>    String a = res;<BR>    String result = "";<BR>    for (int i = 0; i < a.length(); i++) {<BR>      String current = a.substring(i, i + 1);<BR>      if (compare(current, "\u554A") < 0) {<BR>        result = result + current;<BR>      }<BR>      else<BR>      if (compare(current, "\u554A") >= 0 &&<BR>          compare(current, "\u5EA7") <= 0) {<BR>        if (compare(current, "\u531D") >= 0) {<BR>          result = result + "z";<BR>        }<BR>        else<BR>        if (compare(current, "\u538B") >= 0) {<BR>          result = result + "y";<BR>        }<BR>        else<BR>        if (compare(current, "\u6614") >= 0) {<BR>          result = result + "x";<BR>        }<BR>        else<BR>        if (compare(current, "\u6316") >= 0) {<BR>          result = result + "w";<BR>        }<BR>        else<BR>        if (compare(current, "\u584C") >= 0) {<BR>          result = result + "t";<BR>        }<BR>        else<BR>        if (compare(current, "\u6492") >= 0) {<BR>          result = result + "s";<BR>        }<BR>        else<BR>        if (compare(current, "\u7136") >= 0) {<BR>          result = result + "r";<BR>        }<BR>        else<BR>        if (compare(current, "\u671F") >= 0) {<BR>          result = result + "q";<BR>        }<BR>        else<BR>        if (compare(current, "\u556A") >= 0) {<BR>          result = result + "p";<BR>        }<BR>        else<BR>        if (compare(current, "\u54E6") >= 0) {<BR>          result = result + "o";<BR>        }<BR>        else<BR>        if (compare(current, "\u62FF") >= 0) {<BR>          result = result + "n";<BR>        }<BR>        else<BR>        if (compare(current, "\u5988") >= 0) {<BR>          result = result + "m";<BR>        }<BR>        else<BR>        if (compare(current, "\u5783") >= 0) {<BR>          result = result + "l";<BR>        }<BR>        else<BR>        if (compare(current, "\u5580") >= 0) {<BR>          result = result + "k";<BR>        }<BR>        else<BR>        if (compare(current, "\u51FB") > 0) {<BR>          result = result + "j";<BR>        }<BR>        else<BR>        if (compare(current, "\u54C8") >= 0) {<BR>          result = result + "h";<BR>        }<BR>        else<BR>        if (compare(current, "\u5676") >= 0) {<BR>          result = result + "g";<BR>        }<BR>        else<BR>        if (compare(current, "\u53D1") >= 0) {<BR>          result = result + "f";<BR>        }<BR>        else<BR>        if (compare(current, "\u86FE") >= 0) {<BR>          result = result + "e";<BR>        }<BR>        else<BR>        if (compare(current, "\u642D") >= 0) {<BR>          result = result + "d";<BR>        }<BR>        else<BR>        if (compare(current, "\u64E6") >= 0) {<BR>          result = result + "c";<BR>        }<BR>        else<BR>        if (compare(current, "\u82AD") >= 0) {<BR>          result = result + "b";<BR>        }<BR>        else<BR>        if (compare(current, "\u554A") >= 0) {<BR>          result = result + "a";<BR>        }<BR>      }<BR>    }</P> <P>    return result;<BR>  }</P> <P>  public static String getFirstStr(String str) {<BR>    String temp = "";</P> <P>    for (int i = 0; i < str.length(); i++) {<BR>      String sss = "";<BR>      char a = str.charAt(i);<BR>      char aa[] = {<BR>          a<BR>      };<BR>      sss = new String(aa);<BR>      if (Character.isDigit(aa[0])) {<BR>        sss = "data";<BR>      }<BR>      else<BR>      if (a >= 'a' && a <= 'z' || a >= 'A' && a <= 'Z') {<BR>        sss = "character";<BR>      }<BR>      else {<BR>        sss = getBeginCharacter(sss);<BR>      }<BR>      temp = temp + sss;<BR>    }</P> <P>    return temp;<BR>  }</P> <P>  private static String _FromEncode_ = "GBK";<BR>  private static String _ToEncode_ = "GBK";<BR>}<BR>欏圭洰涓殑涓涓被</P><img src ="http://www.aygfsteel.com/snbna/aggbug/22996.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/snbna/" target="_blank">snbna</a> 2005-12-08 17:34 <a href="http://www.aygfsteel.com/snbna/archive/2005/12/08/22996.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> 主站蜘蛛池模板: <a href="http://" target="_blank">隆安县</a>| <a href="http://" target="_blank">西青区</a>| <a href="http://" target="_blank">临汾市</a>| <a href="http://" target="_blank">阜宁县</a>| <a href="http://" target="_blank">郑州市</a>| <a href="http://" target="_blank">商南县</a>| <a href="http://" target="_blank">田阳县</a>| <a href="http://" target="_blank">舒兰市</a>| <a href="http://" target="_blank">潢川县</a>| <a href="http://" target="_blank">社会</a>| <a href="http://" target="_blank">民县</a>| <a href="http://" target="_blank">勐海县</a>| <a href="http://" target="_blank">中西区</a>| <a href="http://" target="_blank">鲜城</a>| <a href="http://" target="_blank">营口市</a>| <a href="http://" target="_blank">南川市</a>| <a href="http://" target="_blank">兴仁县</a>| <a href="http://" target="_blank">哈巴河县</a>| <a href="http://" target="_blank">体育</a>| <a href="http://" target="_blank">华池县</a>| <a href="http://" target="_blank">囊谦县</a>| <a href="http://" target="_blank">廊坊市</a>| <a href="http://" target="_blank">兴和县</a>| <a href="http://" target="_blank">博客</a>| <a href="http://" target="_blank">北流市</a>| <a href="http://" target="_blank">莱芜市</a>| <a href="http://" target="_blank">晋中市</a>| <a href="http://" target="_blank">和硕县</a>| <a href="http://" target="_blank">马山县</a>| <a href="http://" target="_blank">塔河县</a>| <a href="http://" target="_blank">宜良县</a>| <a href="http://" target="_blank">泰和县</a>| <a href="http://" target="_blank">玛沁县</a>| <a href="http://" target="_blank">习水县</a>| <a href="http://" target="_blank">奉化市</a>| <a href="http://" target="_blank">那坡县</a>| <a href="http://" target="_blank">太白县</a>| <a href="http://" target="_blank">夏河县</a>| <a href="http://" target="_blank">澜沧</a>| <a href="http://" target="_blank">招远市</a>| <a href="http://" target="_blank">荔浦县</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>