----- BEGIN LICENSE -----Andrew WeberSingle User LicenseEA7E-855605813A03DD 5E4AD9E6 6C0EEB94 BC99798F942194A6 02396E98 E62C9979 4BB979FE91424C9D A454...
分类:
其他好文 时间:
2014-07-22 22:54:55
阅读次数:
157
1 procedure connect_np_server(); 2 var 3 addr: sockaddr_in; 4 ver: WORD; 5 dt: WSADATA; 6 begin 7 MAKEWORD(1, 1); 8 WSAStartup(ve...
分类:
其他好文 时间:
2014-07-16 18:23:43
阅读次数:
145
原始代码如下:begin DECLARE @SQL_STMT NVARCHAR(300),@V_CLIENT_ID INT,@V_PGNAME VARCHAR(1000),@V_LOGID INT;DECLARE C2 CURSOR FOR SELECT PGNAME,CLIENT_ID FROM ...
分类:
其他好文 时间:
2014-07-16 10:57:40
阅读次数:
217
/*
调用方式:add(a, b);
返回类型:string
*/
string add(string a, string b)
{
string s;
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
int i = 0;
int m, k = 0;
while(a[i] && b...
分类:
其他好文 时间:
2014-07-16 08:04:51
阅读次数:
368
/// /// 重命名文件夹/// function ReNameDirectort(SourceDirectort, DestinationDirectort: string): Boolean;var pDirOperate: TSHFileOpStruct;begin Result := Fa...
分类:
其他好文 时间:
2014-07-15 09:51:32
阅读次数:
186
I have not written any articles here since I graduated from my university. Now I begin to write down my experience about my career of programming du.....
分类:
Web程序 时间:
2014-07-15 08:17:27
阅读次数:
331
??
----手工创建oracle 快照
BEGIN
DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT ();
END;
/
---删除快照
具体快照信息可以查看视图 DBA_HIST_SNAPSHOT
BEGIN
DBMS_WORKLOAD_REPOSITORY.DROP_SNAPSHOT_RANGE (low_snap_id => 22, ...
分类:
数据库 时间:
2014-07-14 18:44:31
阅读次数:
460
【转】SAP FTP Function本文示例如何使用SAP FTP Function将文件从应用服务器传输到另外一个FTP服务器上。DATA: BEGIN OF ig_ftp_result OCCURS 0, line(100), END OF ig_ftp_result.DATA: l_path...
分类:
其他好文 时间:
2014-07-14 10:48:27
阅读次数:
249
uses cxImageListEditor, cxGridMenuOperations;{$R *.dfm}procedure TForm1.Btn1Click(Sender: TObject);var AEditor : TcxImageListEditor;begin AEditor := T...
分类:
其他好文 时间:
2014-07-14 10:39:08
阅读次数:
182
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
If a and d are relatively prime positive integers, the arithmetic sequence begin...
分类:
其他好文 时间:
2014-07-13 18:53:13
阅读次数:
251