CSDN-CSDN社区-.NET技术-C#

收藏 [推荐] C# 或 Sql 中常用代码集锦 散分了!![问题点数:100,结帖人:QQlvbo]

  • QQlvbo
  • (QQlvbo)
  • 等 级:
  • 结帖率:
楼主发表于:2009-07-02 13:02:47
搜集一些C# 或 Sql 中常用代码集锦,学习学习
回复次数:253
#1楼 得分:0回复于:2009-07-02 13:05:01
先收藏,等
  • Hack95用户头像
  • Hack95
  • (柳晛)
  • 等 级:
#2楼 得分:0回复于:2009-07-02 13:05:47
T-SQL常见基础疑点问答总结
http://topic.csdn.net/u/20080728/17/0CDB96BC-9817-4570-8039-FCBA3B156BE4.html
http://topic.csdn.net/u/20080726/23/45568F53-069F-472E-80B0-1361A72109DE.html
  • Hack95用户头像
  • Hack95
  • (柳晛)
  • 等 级:
#3楼 得分:5回复于:2009-07-02 13:06:56
SQL操作全集
http://topic.csdn.net/u/20080515/16/6f359854-5403-4397-89e3-b1b8dd71d527.html
C#通讯编程(整理)|大家可以进来学习
http://topic.csdn.net/u/20080623/08/4bbd2475-45f1-42e3-a613-16b094759ade.html
Asp.NET生成静态页面并分页
http://topic.csdn.net/u/20080624/10/26A45062-572C-47E9-BB38-D9AA05B6C2ED.html
  • Hack95用户头像
  • Hack95
  • (柳晛)
  • 等 级:
#4楼 得分:10回复于:2009-07-02 13:09:09
藏经阁第2卷-SQL常用的函数
http://topic.csdn.net/u/20080803/21/1270777b-a2d6-4323-92d5-cdaa9cf30cf8.html
实现两个数据库中某个表同步(两台服务器)
http://topic.csdn.net/u/20080618/10/4c893d16-47fa-468c-9c39-0f316546d0ac.html
【OpenFlashChart】免费的开源图表项目,图表效果超赞,支持.Net。
http://topic.csdn.net/u/20090115/22/C3F0D94A-8887-462C-A481-E0C910C88FB2.html
国内顶级IT公司面试题,答案
http://topic.csdn.net/u/20090317/18/FBB7DA31-C87E-4FDD-9F15-ECAD63211A35.html
25 个在 Web 中嵌入图表的免费资源
http://topic.csdn.net/u/20090414/10/C8DD7E01-CB11-447E-B79E-CDFC2BF62B89.html
没钱买书的就来下吧 电子书
http://topic.csdn.net/u/20090414/22/38ba0165-1a6d-46ab-99db-4545c0062505.html
  • hikaliv用户头像
  • hikaliv
  • (李博(光宇广贞))
  • 等 级:
#5楼 得分:0回复于:2009-07-02 13:09:11
不错,顶一个。
#6楼 得分:0回复于:2009-07-02 13:13:46
嗯。很不错,顶起!!
#7楼 得分:0回复于:2009-07-02 13:15:51
好东西, UP一下。
#8楼 得分:0回复于:2009-07-02 13:16:18
這個問題不太好回答。
  • desegou用户头像
  • desegou
  • (不吃羊的狼)
  • 等 级:
#9楼 得分:0回复于:2009-07-02 13:17:10
up
  • lovvver用户头像
  • lovvver
  • (努力学习,争取再上一个层次。)
  • 等 级:
#10楼 得分:0回复于:2009-07-02 13:18:09
支持
#11楼 得分:5回复于:2009-07-02 13:21:23
  • 51Crack用户头像
  • 51Crack
  • (鸳鸳相抱何时了)
  • 等 级:
#12楼 得分:0回复于:2009-07-02 13:23:32



SIGNATURE:----------------------------------------------------------------



  • zzxap用户头像
  • zzxap
  • (风语者www.bvbuy.cn)
  • 等 级:
  • 2

#13楼 得分:0回复于:2009-07-02 13:24:17
看看精华就行了,还集什么
#14楼 得分:0回复于:2009-07-02 13:28:36
#15楼 得分:5回复于:2009-07-02 13:32:50
SQL code
/* 字符函数 */ /* 返回字符表达式中最左侧字符的ASCII代码值 */ select Ascii('a') --a:97,A:65 /* 将整数ASCII代码转换为字符 */ select Char(97)--97:a,65:A /* 返回表达式中指定字符的开始位置 */ select Charindex('b','abcdefg',5) /* 以整数返回两个字符表达式的SOUNDEX值之差 */ select Difference('bet','bit')--3 /* 返回字符表达式最左侧指定数目的字符 */ select Left('abcdefg',3)--abc /* 返回给定字符串表达的字符数 */ select Len('abcdefg')--7 /* 返回将大写字符转换为小字符的字符表达式 */ select Lower('ABCDEFG')--abcdefg /* 返回删除了前导空格之后字符表达式 */ select Ltrim(' abcdefg')--abcdefg /* 返回具有给定的整数代码的UNICODE字符 */ select Nchar(65)--A /* 返回指定表达式中模式第一次出现的开始位置 */ select Patindex('%_cd%','abcdefg')--2 /* 返回为成为有效的SQL SERVER分隔标识符而添加了分隔符的UNICODE字符串 */ select Quotename('create table') /* 用第三个表达式替换第一个表达式中出现的第二个表达式 */ select Replace('abcdefg','cd','xxx')--abxxxefg /* 按指定次数重复表达式 */ select Replicate('abc|',4)--abc|abc|abc|abc| /* 返回字符表达式的逆向表达式 */ select Reverse('abc')--cba /* 返回字符表达式右侧指定数目的字符 */ select Right('abcd',3)--bcd /* 返回截断了所有尾随空格之后的字符表达式 */ select Rtrim('abcd ')--abcd /* 返回由四个字符表达的SOUNDEX代码 */ select Soundex('abcd')--A120 /* 返回由重复空格组成的字符串 */ select Space(10)--[ ] /* 返回从默认表达转换而来的字符串 */ select Str(100)--[ 100] /* */ select Str(100,3)--[100] /* */ select Str(14.4444,5,4)--[14.44] /* 删除指定长度的字符,并在指定的起点处插入另一组字符 */ select Stuff('abcdefg',2,4,'xxx')--axxxfg /* 返回字符表达式,二进制,文本表达式或图像表达的一部分 */ select Substring('abcdefg',2,3)--bcd /* 返回表达第一个字符的UNICODE整数值 */ select Unicode('a')--97 /* 返回将小写字符转换为大写字符的字符表达式 */ select Upper('a')--'A'
#16楼 得分:5回复于:2009-07-02 13:33:57
C# code
//某些时候你或许想 "重复使用" 名为 i 的变量,那么定义 Scope 吧。 { var i = 1; } { var i = 2; } //类型相同时,和我们一次声明多个同类型变量差不多。 using (SqlConnection conn = new SqlConnection(), conn2 = new SqlConnection()) { } 如果类型不同,那么就写成下面这样。 using (MemoryStream stream = new MemoryStream()) using (SqlConnection conn = new SqlConnection()) { } //大家还可以试试这个 [Condition("DEBUG")] public void YourDebugStuff() { }
#17楼 得分:0回复于:2009-07-02 13:41:56
好东西 顶
  • deyter用户头像
  • deyter
  • (任何限制,都是从自己内心开始的)
  • 等 级:
#18楼 得分:0回复于:2009-07-02 13:47:27
收藏
#19楼 得分:0回复于:2009-07-02 13:54:15
收藏,都是好东西。
  • jieon用户头像
  • jieon
  • (jieon)
  • 等 级:
#20楼 得分:0回复于:2009-07-02 13:59:26
up
#21楼 得分:0回复于:2009-07-02 14:00:52
学习
  • c863123用户头像
  • c863123
  • (哎,我戒了。)
  • 等 级:
#22楼 得分:0回复于:2009-07-02 14:01:31
收,看看。。。
#23楼 得分:0回复于:2009-07-02 14:04:50
总结一下,凡是T-SQL语句都可以...
#24楼 得分:0回复于:2009-07-02 15:53:49
不错!多谢分享
#25楼 得分:0回复于:2009-07-02 15:57:00
up
#26楼 得分:5回复于:2009-07-02 15:57:29
可以坚强勇敢的用来实现串口通信。

using System;
using System.Runtime.InteropServices;
namespace BusApp
{
/// <summary>
///
/// </summary>
public class mycom
{
  public mycom()
  {
  //
  // TODO: 在此处添加构造函数逻辑
  //
  }
  public int PortNum; //1,2,3,4
  public int BaudRate; //1200,2400,4800,9600
  public byte ByteSize; //8 bits
  public byte Parity; // 0-4=no,odd,even,mark,space
  public byte StopBits; // 0,1,2 = 1, 1.5, 2
  public int ReadTimeout; //10
 
  //comm port win32 file handle
  private int hComm = -1;
 
  public bool Opened = false;
 
  //win32 api constants
  private const uint GENERIC_READ = 0x80000000;
  private const uint GENERIC_WRITE = 0x40000000;
  private const int OPEN_EXISTING = 3; 
  private const int INVALID_HANDLE_VALUE = -1;
 
  [StructLayout(LayoutKind.Sequential)]
  private struct DCB
  {
  //taken from c struct in platform sdk
  public int DCBlength;          // sizeof(DCB)
  public int BaudRate;            // current baud rate
  public int fBinary;          // binary mode, no EOF check
  public int fParity;          // enable parity checking
  public int fOutxCtsFlow;      // CTS output flow control
  public int fOutxDsrFlow;      // DSR output flow control
  public int fDtrControl;      // DTR flow control type
  public int fDsrSensitivity;  // DSR sensitivity
  public int fTXContinueOnXoff; // XOFF continues Tx
  public int fOutX;          // XON/XOFF out flow control
  public int fInX;          // XON/XOFF in flow control
  public int fErrorChar;    // enable error replacement
  public int fNull;          // enable null stripping
  public int fRtsControl;    // RTS flow control
  public int fAbortOnError;  // abort on error
  public int fDummy2;        // reserved
  public ushort wReserved;          // not currently used
  public ushort XonLim;            // transmit XON threshold
  public ushort XoffLim;            // transmit XOFF threshold
  public byte ByteSize;          // number of bits/byte, 4-8
  public byte Parity;            // 0-4=no,odd,even,mark,space
  public byte StopBits;          // 0,1,2 = 1, 1.5, 2
  public char XonChar;            // Tx and Rx XON character
  public char XoffChar;          // Tx and Rx XOFF character
  public char ErrorChar;          // error replacement character
  public char EofChar;            // end of input character
  public char EvtChar;            // received event character
  public ushort wReserved1;        // reserved; do not use
  }
  [StructLayout(LayoutKind.Sequential)]
  private struct COMMTIMEOUTS
  { 
  public int ReadIntervalTimeout;
  public int ReadTotalTimeoutMultiplier;
  public int ReadTotalTimeoutConstant;
  public int WriteTotalTimeoutMultiplier;
  public int WriteTotalTimeoutConstant;
  } 
  [StructLayout(LayoutKind.Sequential)]
  private struct OVERLAPPED
  {
  public int  Internal;
  public int  InternalHigh;
  public int  Offset;
  public int  OffsetHigh;
  public int hEvent;
  } 
 
  [DllImport("kernel32.dll")]
  private static extern int CreateFile(
  string lpFileName,                        // file name
  uint dwDesiredAccess,                      // access mode
  int dwShareMode,                          // share mode
  int lpSecurityAttributes, // SD
  int dwCreationDisposition,                // how to create
  int dwFlagsAndAttributes,                // file attributes
  int hTemplateFile                        // handle to template file
  );
  [DllImport("kernel32.dll")]
  private static extern bool GetCommState(
  int hFile,  // handle to communications device
  ref DCB lpDCB    // device-control block
  );
  [DllImport("kernel32.dll")]
  private static extern bool BuildCommDCB(
  string lpDef,  // device-control string
  ref DCB lpDCB    // device-control block
  );
  [DllImport("kernel32.dll")]
  private static extern bool SetCommState(
  int hFile,  // handle to communications device
  ref DCB lpDCB    // device-control block
  );
  [DllImport("kernel32.dll")]
  private static extern bool GetCommTimeouts(
  int hFile,                  // handle to comm device
  ref COMMTIMEOUTS lpCommTimeouts  // time-out values
  );
  [DllImport("kernel32.dll")]
  private static extern bool SetCommTimeouts(
  int hFile,                  // handle to comm device
  ref COMMTIMEOUTS lpCommTimeouts  // time-out values
  );
  [DllImport("kernel32.dll")]
  private static extern bool ReadFile(
  int hFile,                // handle to file
  byte[] lpBuffer,            // data buffer
  int nNumberOfBytesToRead,  // number of bytes to read
  ref int lpNumberOfBytesRead, // number of bytes read
  ref OVERLAPPED lpOverlapped    // overlapped buffer
  );
  [DllImport("kernel32.dll")]
  private static extern bool WriteFile(
  int hFile,                    // handle to file
  byte[] lpBuffer,                // data buffer
  int nNumberOfBytesToWrite,    // number of bytes to write
  ref int lpNumberOfBytesWritten,  // number of bytes written
  ref OVERLAPPED lpOverlapped        // overlapped buffer
  );
  [DllImport("kernel32.dll")]
  private static extern bool CloseHandle(
  int hObject  // handle to object
  );
 
  public void Open()
  {
 
  DCB dcbCommPort = new DCB();
  COMMTIMEOUTS ctoCommPort = new COMMTIMEOUTS();
 
 
  // OPEN THE COMM PORT.
   
  hComm = CreateFile("COM" + PortNum ,GENERIC_READ | GENERIC_WRITE,0, 0,OPEN_EXISTING,0,0);
 
  // IF THE PORT CANNOT BE OPENED, BAIL OUT.
  if(hComm == INVALID_HANDLE_VALUE)
  {
    throw(new ApplicationException("Comm Port Can Not Be Opened"));
  }
 
  // SET THE COMM TIMEOUTS.
 
  GetCommTimeouts(hComm,ref ctoCommPort);
  ctoCommPort.ReadTotalTimeoutConstant = ReadTimeout;
  ctoCommPort.ReadTotalTimeoutMultiplier = 0;
  ctoCommPort.WriteTotalTimeoutMultiplier = 0;
  ctoCommPort.WriteTotalTimeoutConstant = 0; 
  SetCommTimeouts(hComm,ref ctoCommPort);
 
  // SET BAUD RATE, PARITY, WORD SIZE, AND STOP BITS.
  // THERE ARE OTHER WAYS OF DOING SETTING THESE BUT THIS IS THE EASIEST.
  // IF YOU WANT TO LATER ADD CODE FOR OTHER BAUD RATES, REMEMBER
  // THAT THE ARGUMENT FOR BuildCommDCB MUST BE A POINTER TO A STRING.
  // ALSO NOTE THAT BuildCommDCB() DEFAULTS TO NO HANDSHAKING.
 
  dcbCommPort.DCBlength = Marshal.SizeOf(dcbCommPort);
  GetCommState(hComm, ref dcbCommPort);
  dcbCommPort.BaudRate=BaudRate;
  dcbCommPort.Parity=Parity;
  dcbCommPort.ByteSize=ByteSize;
  dcbCommPort.StopBits=StopBits;
  SetCommState(hComm, ref dcbCommPort);
   
  Opened = true;
   
  }
 
  public void Close()
  {
  if (hComm!=INVALID_HANDLE_VALUE)
  {
    CloseHandle(hComm);
                Opened=false;
  }
  }
 
  public byte[] Read(int NumBytes)
  {
  byte[] BufBytes;
  byte[] OutBytes;
  BufBytes = new byte[NumBytes];
  if (hComm!=INVALID_HANDLE_VALUE)
  {
    OVERLAPPED ovlCommPort = new OVERLAPPED();
    int BytesRead=0;
    ReadFile(hComm,BufBytes,NumBytes,ref BytesRead,ref ovlCommPort);
    OutBytes = new byte[BytesRead];
    Array.Copy(BufBytes,OutBytes,BytesRead);
  }
  else
  {
    throw(new ApplicationException("Comm Port Not Open"));
  }
  return OutBytes;
  }
 
  public int Write(byte[] WriteBytes)
  {
  int BytesWritten = 0;
  if (hComm!=INVALID_HANDLE_VALUE)
  {
    OVERLAPPED ovlCommPort = new OVERLAPPED();
    WriteFile(hComm,WriteBytes,WriteBytes.Length,ref BytesWritten,ref ovlCommPort);
  }
  else
  {
    throw(new ApplicationException("Comm Port Not Open"));
  } 
  return BytesWritten;
  }
}
}

#27楼 得分:0回复于:2009-07-02 15:58:57
引用 7 楼 qqiuzaihui 的回复: 好东西, UP一下。
up
  • hanhanmj用户头像
  • hanhanmj
  • (神.ぃ一样的男子)
  • 等 级:
#28楼 得分:0回复于:2009-07-02 15:59:55

不错,收藏了。。
#29楼 得分:0回复于:2009-07-02 15:59:58
mark~!
  • ws_hgo用户头像
  • ws_hgo
  • (蓝天白云--(全面提升!!))
  • 等 级:
#30楼 得分:0回复于:2009-07-02 16:03:51
blog.csdn.net/ws_hgo
  • hetl_1985用户头像
  • hetl_1985
  • (悔说话的哑巴)
  • 等 级:
#31楼 得分:0回复于:2009-07-02 16:04:58
不错,收藏了。。
#32楼 得分:0回复于:2009-07-02 16:13:12
up
#33楼 得分:0回复于:2009-07-02 16:16:39
支持一下
#34楼 得分:0回复于:2009-07-02 16:25:00
mark
#35楼 得分:0回复于:2009-07-02 16:26:22
mark
#36楼 得分:0回复于:2009-07-02 16:30:38
顶一个
  • zhuoyue用户头像
  • zhuoyue
  • (海阔天空)
  • 等 级:
#37楼 得分:0回复于:2009-07-02 16:30:44
mark
#38楼 得分:0回复于:2009-07-02 16:52:16


看着,收藏!~
#39楼 得分:0回复于:2009-07-02 16:57:39
收藏
#40楼 得分:0回复于:2009-07-02 16:58:54
up.....
  • y82907966用户头像
  • y82907966
  • (美人不行,我来香车!^*^)
  • 等 级:
#41楼 得分:0回复于:2009-07-02 16:59:51
  看看
#42楼 得分:0回复于:2009-07-02 17:02:31
保贵再利用资源啊!~收藏先谢过
  • jaylongli用户头像
  • jaylongli
  • (思则变,变则通,通则灵。)
  • 等 级:
#43楼 得分:0回复于:2009-07-02 17:10:08
g.cn
上面很多

很多东西用到才去了解的,因为本来就是又很多变化的

不同需求,不同做法
#44楼 得分:0回复于:2009-07-02 17:10:14
UP
  • zq9811用户头像
  • zq9811
  • (该用户不懒,已设置昵称)
  • 等 级:
#45楼 得分:0回复于:2009-07-02 17:12:58
js 怎么界面变成这副德行了 不安逸
#46楼 得分:0回复于:2009-07-02 17:14:47
#47楼 得分:0回复于:2009-07-02 17:15:23
好的提议
#48楼 得分:5回复于:2009-07-02 17:19:05
C# code
// "uid=sa":连接数据库的用户名为sa. // "password=":连接数据库的验证密码为空.他的别名为"pwd",所以我们可以写为"pwd=". // "initial catalog=Northwind":使用的数据源为"Northwind"这个数据库.他的别名为"Database",本句可以写成"Database=Northwind". // "Server=YourSQLServer":使用名为"YourSQLServer"的服务器.他的别名为"Data Source","Address","Addr". // " Connect Timeout=30":连接超时时间为30秒.(根据情况添加) // PS: // 1.你的SQL Server必须已经设置了需要用户名和密码来登录,否则不能用这样的方式来登录.如果你的SQL Server设置为Windows登录,那么在这里就不需要使用"uid"和"password"这样的方式来登录,而需要使用"Trusted_Connection=SSPI"来进行登录. // 2. 如果使用的是本地数据库且定义了实例名,则可以写为"Server=(local)\实例名";如果是远程服务器,则将"(local)"替换为远程服务器的名称或IP地址. string strConnection = "Trusted_Connection=SSPI;"; strConnection += "database=NTF_Navision_enlistment60;Server=CAIXIATA-6BE823;"; strConnection += "Connect Timeout=30"; 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/LCL_data/archive/2009/04/30/4139145.aspx
#49楼 得分:0回复于:2009-07-02 17:23:40
不错,支持。
#50楼 得分:5回复于:2009-07-02 17:24:01
SQL code
/* 分页查询 */ create PROCEDURE [sp_Page] @PageCurrent int, --要显示的页码 @PageSize int,--每页的大小 @ifelse nvarchar(1000),--返回的字段 @where nvarchar(1000),--条件 @order nvarchar(1000)--排序 AS BEGIN BEGIN TRY DECLARE @strSQL nvarchar(500),@strSQLcount nvarchar(500),@countPage int if ISNULL(@PageSize,0)<1 set @PageSize=20 set @strSQL='select * from ( select '+@ifelse+',ROW_NUMBER() OVER('+@order+') as row from '+@where+' ) a where row between '+CONVERT(nvarchar(10), @PageCurrent*@PageSize-@PageSize+1)+' and '+CONVERT(nvarchar(10), @PageCurrent*@PageSize)+'' set @strSQLcount='select count(1) as count from '+@where EXECUTE sp_executesql @strSQL; EXECUTE sp_executesql @strSQLcount; END TRY BEGIN CATCH print ERROR_MESSAGE() END CATCH END
#51楼 得分:5回复于:2009-07-02 17:25:11
SQL code
---测试数据--- if object_id('[pactinfo]') is not null drop table [pactinfo] go create table [pactinfo]([ID] int,[pactname] varchar(4)) insert [pactinfo] select 1,'正常' union all select 2,'中国' union all select 3,'做饭' union all select 4,'加发' go ---引用前辈们的一个函数--- create function f_GetPy(@str nvarchar(4000)) returns nvarchar(4000) as begin declare @strlen int,@re nvarchar(4000) declare @t table(chr nchar(1) collate Chinese_PRC_CI_AS,letter nchar(1)) insert into @t(chr,letter) select '', 'A ' union all select '', 'B ' union all select '', 'C ' union all select '', 'D ' union all select '', 'E ' union all select '', 'F ' union all select '', 'G ' union all select '', 'H ' union all select '', 'J ' union all select '', 'K ' union all select '', 'L ' union all select '', 'M ' union all select '', 'N ' union all select '', 'O ' union all select '', 'P ' union all select '', 'Q ' union all select '', 'R ' union all select '', 'S ' union all select '', 'T ' union all select '', 'W ' union all select '', 'X ' union all select '', 'Y ' union all select '', 'Z ' select @strlen=len(@str),@re= ' ' while @strlen> 0 begin select top 1 @re=letter+@re,@strlen=@strlen-1 from @t a where chr <=substring(@str,@strlen,1) order by chr desc if @@rowcount=0 select @re=substring(@str,@strlen,1)+@re,@strlen=@strlen-1 end return(@re) end go ---查询--- select * from [pactinfo] where left(dbo.f_GetPy(pactname),2)='zf'
#52楼 得分:0回复于:2009-07-02 18:20:27
.
#53楼 得分:0回复于:2009-07-02 18:32:14
楼主给点分我,没分了.
#54楼 得分:0回复于:2009-07-02 18:57:58
学习
#55楼 得分:0回复于:2009-07-02 19:03:37
做个记号吧,哎
#56楼 得分:0回复于:2009-07-02 20:14:33
收藏了,学习
#57楼 得分:0回复于:2009-07-02 20:18:44
jf
#58楼 得分:0回复于:2009-07-02 20:20:31
mark
#59楼 得分:0回复于:2009-07-02 22:06:12
jf....
#63楼 得分:0回复于:2009-07-02 22:48:56
up
#64楼 得分:0回复于:2009-07-02 22:49:23
接分
  • LQknife用户头像
  • LQknife
  • (安乃定:不吃头疼,吃了上瘾。)
  • 等 级:
#65楼 得分:0回复于:2009-07-02 23:04:33
接分了
#66楼 得分:0回复于:2009-07-02 23:41:33
不错~~~~~
#67楼 得分:0回复于:2009-07-03 07:59:19
谢谢
#68楼 得分:0回复于:2009-07-03 08:22:40
收藏
#69楼 得分:0回复于:2009-07-03 08:24:49
顶楼主,收藏
#70楼 得分:0回复于:2009-07-03 08:25:51
mark
#71楼 得分:0回复于:2009-07-03 08:42:13
谢谢分享
#72楼 得分:0回复于:2009-07-03 08:47:17
找好的收藏。。Up
#73楼 得分:0回复于:2009-07-03 09:12:44
学习中,多谢。。。
#74楼 得分:0回复于:2009-07-03 09:14:33
  • baba72用户头像
  • baba72
  • (baba72)
  • 等 级:
#75楼 得分:0回复于:2009-07-03 09:18:12
up
#76楼 得分:0回复于:2009-07-03 09:18:51
接分
#77楼 得分:0回复于:2009-07-03 09:18:54
MARK!~
  • codelabs用户头像
  • codelabs
  • (别,请自重!)
  • 等 级:
#78楼 得分:0回复于:2009-07-03 09:20:00
楼上都写好了,我就接分吧
#79楼 得分:0回复于:2009-07-03 09:22:13
祝贺,接分
  • kangbo818用户头像
  • kangbo818
  • (顶 ▍是一种幸福)
  • 等 级:
#80楼 得分:0回复于:2009-07-03 09:23:19
接分
#81楼 得分:0回复于:2009-07-03 09:23:42
up
#82楼 得分:0回复于:2009-07-03 09:41:01
SQL学的不好,来学习一下,看完代码后发现,我需要去恶补一下!!!
#83楼 得分:0回复于:2009-07-03 09:42:34
不错,顶一个。
  • kahn178用户头像
  • kahn178
  • (我为诗狂)
  • 等 级:
#84楼 得分:0回复于:2009-07-03 09:44:42
不错,支持。
#85楼 得分:0回复于:2009-07-03 09:48:55
ding
#86楼 得分:0回复于:2009-07-03 09:53:20
引用 12 楼 51crack 的回复: SIGNATURE:----------------------------------------------------------------


这也太准了,我就是在海淀,用的确实是WINdows2003,还是火狐浏览器,除了IP和该行错了之外,其他全中!!!

  (__) 
  /oo\\________
  \ /     \---\
  \/    /  \  \
   \\_|___\\_|/  *
     ||  YY| 
     ||  ||   
#87楼 得分:0回复于:2009-07-03 10:06:28
学习学习
#88楼 得分:0回复于:2009-07-03 10:14:21
收藏、学习
#89楼 得分:0回复于:2009-07-03 10:15:56
不错收藏了啊?!
#90楼 得分:0回复于:2009-07-03 10:16:18
支持一个
#91楼 得分:0回复于:2009-07-03 10:16:56
值得一看
#92楼 得分:0回复于:2009-07-03 10:26:43
支持下
  • zq9811用户头像
  • zq9811
  • (该用户不懒,已设置昵称)
  • 等 级:
#93楼 得分:0回复于:2009-07-03 10:27:23
jf
  • jAmEs_用户头像
  • jAmEs_
  • (jAmEs_)
  • 等 级:
#94楼 得分:0回复于:2009-07-03 10:32:27
不錯
#95楼 得分:0回复于:2009-07-03 10:34:38
很有用,顶!关注中……
#96楼 得分:0回复于:2009-07-03 10:38:39
mark~
#97楼 得分:0回复于:2009-07-03 10:44:50
UP!!!!!

最好最好,都有注释说明。
#98楼 得分:0回复于:2009-07-03 10:48:05

嗯。很不错,顶起!!
#99楼 得分:0回复于:2009-07-03 10:48:33
up
  • dj3688用户头像
  • dj3688
  • (dj3688)
  • 等 级:
#100楼 得分:0回复于:2009-07-03 10:48:59
mark