锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲精品老司机在线观看,国产成人亚洲精品91专区手机,亚洲综合在线另类色区奇米http://www.tkk7.com/huyi0616/archive/2009/12/23/306982.html涓鏉竻鑼?/dc:creator>涓鏉竻鑼?/author>Wed, 23 Dec 2009 02:24:00 GMThttp://www.tkk7.com/huyi0616/archive/2009/12/23/306982.htmlhttp://www.tkk7.com/huyi0616/comments/306982.htmlhttp://www.tkk7.com/huyi0616/archive/2009/12/23/306982.html#Feedback0http://www.tkk7.com/huyi0616/comments/commentRss/306982.htmlhttp://www.tkk7.com/huyi0616/services/trackbacks/306982.html
Microsoft 鐨凧DBC椹卞姩緇忓父鍑虹幇寰堝闅句互瑙e喅鐨勯棶棰橈紝姣斿鍓嶉潰璁ㄨ榪囩殑SQL Server 2000 "Error establishing socket" 閿欒.褰撶劧浣跨敤Sql Server 2000鐨勭涓夋柟椹卞姩灝辨病鏈夎繖浜涢棶棰樺瓨鍦ㄣ傛垜浠庣綉涓婃壘鍒癹TDS鍙栦唬寰蔣鐨凷QLServer2000鐨凧DBC椹卞姩錛屽笇鏈涘澶у鏈夊府鍔╋細


    瑕佷嬌鐢╦TDS椹卞姩錛岄厤緗鍋氫竴浜涘彉鍔細

  • 鏁版嵁搴揢RL錛?strong>jdbc:jtds:sqlserver://localhost:1433;DatabaseName=XXX
  • 椹卞姩綾伙細net.sourceforge.jtds.jdbc.Driver

    鍏跺湪sourceforge涓婄殑浠嬬粛涓啓鍒幫細

    Open source pure Java JDBC 2.1 driver for the Microsoft SQL Server series (6.5, 7.0 and 2000). jTDS is the fastest JDBC driver for MSSQL Server and is a complete implementation of the JDBC spec.

    鐩墠鏈鏂扮増鏈槸1.2.2

    欏圭洰欏碉細http://sourceforge.net/projects/jtds/



]]>
SQL SERVER2005瀛︿範絎旇錛堜竴錛?绱㈠紩http://www.tkk7.com/huyi0616/archive/2009/10/11/297734.html涓鏉竻鑼?/dc:creator>涓鏉竻鑼?/author>Sat, 10 Oct 2009 16:47:00 GMThttp://www.tkk7.com/huyi0616/archive/2009/10/11/297734.htmlhttp://www.tkk7.com/huyi0616/comments/297734.htmlhttp://www.tkk7.com/huyi0616/archive/2009/10/11/297734.html#Feedback0http://www.tkk7.com/huyi0616/comments/commentRss/297734.htmlhttp://www.tkk7.com/huyi0616/services/trackbacks/297734.html

SELECT TOP 10000 IDENTITY(INT ,1,1) AS Pkid ,o.* INTO tempTable FROM sys.objects o,sys.[columns] c

CREATE  CLUSTERED INDEX ixuc_pkid ON tempTable(pkid ASC)
--CREATE  CLUSTERED INDEX ixuc_pkid ON tempTable(pkid DESC)

DROP INDEX dbo.tempTable.ixuc_pkid

(1) SELECT * FROM tempTable tt

CREATE INDEX cxde_objid ON dbo.tempTable(OBJECT_ID)

(2) SELECT * FROM tempTable tt ORDER BY tt.OBJECT_ID

DROP INDEX dbo.tempTable.ixuc_pkid

(3) SELECT * FROM tempTable tt ORDER BY tt.OBJECT_ID

閫氳繃CTRL+L鏌ョ湅(1)(2)(3)鏌ヨ寮閿楠岃瘉浠ヤ笂緇撹

2.鎸囧畾order by瀛愬彞鏃?闄ら潪鍙楀埌


]]>
java 璋冪敤瀛樺偍榪囩▼http://www.tkk7.com/huyi0616/archive/2009/01/08/250458.html涓鏉竻鑼?/dc:creator>涓鏉竻鑼?/author>Thu, 08 Jan 2009 03:07:00 GMThttp://www.tkk7.com/huyi0616/archive/2009/01/08/250458.htmlhttp://www.tkk7.com/huyi0616/comments/250458.htmlhttp://www.tkk7.com/huyi0616/archive/2009/01/08/250458.html#Feedback0http://www.tkk7.com/huyi0616/comments/commentRss/250458.htmlhttp://www.tkk7.com/huyi0616/services/trackbacks/250458.html//璋冪敤瀛樺偍榪囩▼甯﹀弬
            CallableStatement ca = conn.prepareCall("{call Login (?,?)}");
            ca.setString(1,username);
            ca.setString(2,password);
            ca.execute();

//璋冪敤瀛樺偍榪囩▼甯﹁繑鍥炲弬鏁扮殑
            CallableStatement ca = conn.prepareCall("{call Login (?,?,?)}");
            ca.setString(1,username);
            ca.setString(2,password);
            ca.registerOutParameter(3,java.sql.Types.INTEGER);
            ca.execute();
            int returnOut = ca.getInt(3);

 //璋冪敤瀛樺偍榪囩▼甯﹁繑鍥炲肩殑return
            CallableStatement ca = conn.prepareCall("{?=call Login (?,?,?)}");
            ca.setString(2,username);
            ca.setString(3,password);
            ca.registerOutParameter(1,java.sql.Types.INTEGER);
            ca.execute();
            int returnOut = ca.getInt(1);

    //璋冪敤瀛樺偍榪囩▼榪斿洖涓や釜緇撴灉闆?/font>
            CallableStatement ca = conn.prepareCall("{call Login (?,?,?)}");
            ca.setString(1,username);
            ca.setString(2,password);
            ca.execute();

            ResultSet rs = ca.getResultSet();
            while(rs.next())
            {
                System.out.println(rs.getInt(1)+rs.getString(2));
            }
         if(ca.getMoreResults())
            {
                rs = ca.getResultSet();
                while (rs.next()) {
                    System.out.println(rs.getInt(1) + rs.getString(2));
                }



]]>
SQL緇熻錛屽鐢熸垚緇?/title><link>http://www.tkk7.com/huyi0616/archive/2008/09/09/227907.html</link><dc:creator>涓鏉竻鑼?/dc:creator><author>涓鏉竻鑼?/author><pubDate>Tue, 09 Sep 2008 03:52:00 GMT</pubDate><guid>http://www.tkk7.com/huyi0616/archive/2008/09/09/227907.html</guid><wfw:comment>http://www.tkk7.com/huyi0616/comments/227907.html</wfw:comment><comments>http://www.tkk7.com/huyi0616/archive/2008/09/09/227907.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/huyi0616/comments/commentRss/227907.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/huyi0616/services/trackbacks/227907.html</trackback:ping><description><![CDATA[     鎽樿: 杞紙http://www.cnblogs.com/tenghoo/archive/2007/06/11/779240.html錛?瀛︾敓鎴愮嘩琛?stuscore)錛? 濮撳悕錛歯ame 璇劇▼錛歴ubject ...  <a href='http://www.tkk7.com/huyi0616/archive/2008/09/09/227907.html'>闃呰鍏ㄦ枃</a><img src ="http://www.tkk7.com/huyi0616/aggbug/227907.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/huyi0616/" target="_blank">涓鏉竻鑼?/a> 2008-09-09 11:52 <a href="http://www.tkk7.com/huyi0616/archive/2008/09/09/227907.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.tkk7.com/" title="亚洲av成人片在线观看">亚洲av成人片在线观看</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://99999pp.com" target="_blank">免费观看美女用震蛋喷水的视频 </a>| <a href="http://onisterwines.com" target="_blank">最近免费mv在线观看动漫</a>| <a href="http://codecampo.com" target="_blank">国产色爽免费视频</a>| <a href="http://k5nn.com" target="_blank">亚洲精品无码久久久久A片苍井空</a>| <a href="http://cc45987.com" target="_blank">亚洲精品免费网站</a>| <a href="http://4husese.com" target="_blank">亚洲欧美日韩中文二区</a>| <a href="http://bjdxpx.com" target="_blank">免费高清小黄站在线观看</a>| <a href="http://339258.com" target="_blank">亚洲av午夜电影在线观看</a>| <a href="http://my77789.com" target="_blank">免费一级毛片在级播放</a>| <a href="http://zhaosifuwang.com" target="_blank">色多多免费视频观看区一区</a>| <a href="http://yule4.com" target="_blank">午夜亚洲国产成人不卡在线</a>| <a href="http://bjqhkf.com" target="_blank">又黄又大的激情视频在线观看免费视频社区在线</a>| <a href="http://4228970.com" target="_blank">天天摸夜夜摸成人免费视频</a>| <a href="http://kanboy.com" target="_blank">国产在亚洲线视频观看</a>| <a href="http://lzlcp.com" target="_blank">亚洲一区精品伊人久久伊人</a>| <a href="http://www-095666.com" target="_blank">国产在线观看无码免费视频</a>| <a href="http://8xxon8.com" target="_blank">亚洲成色在线综合网站</a>| <a href="http://sh-lkby.com" target="_blank">91精品成人免费国产片</a>| <a href="http://zzhdrsqwx.com" target="_blank">亚洲国产日韩精品</a>| <a href="http://linmh.com" target="_blank">gogo全球高清大胆亚洲</a>| <a href="http://43sihu.com" target="_blank">最近中文字幕大全免费版在线</a>| <a href="http://www6661126.com" target="_blank">亚洲AV人无码综合在线观看</a>| <a href="http://linmh.com" target="_blank">91成年人免费视频</a>| <a href="http://83k5.com" target="_blank">免费观看亚洲人成网站</a>| <a href="http://df8848.com" target="_blank">国产亚洲综合久久系列</a>| <a href="http://222xx8.com" target="_blank">国产成人精品免费视</a>| <a href="http://714747.com" target="_blank">蜜桃传媒一区二区亚洲AV</a>| <a href="http://www-44455588.com" target="_blank">国产亚洲精品激情都市</a>| <a href="http://jinmenonline.com" target="_blank">免费人成在线观看网站品爱网</a>| <a href="http://bjsunic.com" target="_blank">亚洲一区二区三区高清不卡</a>| <a href="http://wwwks2424.com" target="_blank">免费h成人黄漫画嘿咻破解版</a>| <a href="http://conghui8.com" target="_blank">少妇性饥渴无码A区免费</a>| <a href="http://xa69.com" target="_blank">亚洲不卡中文字幕</a>| <a href="http://600c28.com" target="_blank">亚洲成?v人片天堂网无码</a>| <a href="http://qq-gm.com" target="_blank">暖暖日本免费中文字幕</a>| <a href="http://bogygames.com" target="_blank">亚洲码欧美码一区二区三区</a>| <a href="http://www907ii.com" target="_blank">亚洲乱色熟女一区二区三区丝袜</a>| <a href="http://www00475.com" target="_blank">亚洲美女免费视频</a>| <a href="http://xsdin.com" target="_blank">国产成人自产拍免费视频</a>| <a href="http://wwwyy763.com" target="_blank">亚洲Av无码一区二区二三区</a>| <a href="http://shbailongma.com" 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>