做个记录:var pCount = this._dataProvider.GetParameter();pCount.ParameterName = "totalCount";pCount.Direction = ParameterDirection.Output;pCount.DbType = D...
分类:
数据库 时间:
2014-09-03 10:56:06
阅读次数:
362
浙大acm,第一题 Calculate a + b Input The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line. Output For each pair of input integers a ...
分类:
编程语言 时间:
2014-09-03 06:16:56
阅读次数:
260
场景:在Qt里,不能使用std::cout,所以使用下面的函数就可以打印cout的内容了
#include
#include
static void OpenConsole()
{
AllocConsole();
HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
int hCrt = _op...
分类:
其他好文 时间:
2014-09-02 19:58:05
阅读次数:
298
代码思路如下:select *,(@row_num:=@row_num+1) as row_no from stc_output,(select(@row_num:=0)) b;select * from (select *,(@row_num:=@row_num+1) as row_no from...
分类:
数据库 时间:
2014-09-02 19:33:35
阅读次数:
253
declarev_out varchar2(50);begin execute immediate 'select p_guid from c_itcomp where rownum = 1 ' into v_out; dbms_output.put_line(v_ou...
分类:
数据库 时间:
2014-09-02 15:46:34
阅读次数:
226
1 #include 2 using namespace std; 3 int BubbleSort(int A[],int n); 4 int OutPut(int A[],int n); 5 int main() 6 { 7 int A[]={5,1,3,2,4}; 8 Bu...
分类:
编程语言 时间:
2014-09-02 15:36:54
阅读次数:
259
1 #include 2 using namespace std; 3 int Merge(int A[],int p,int q,int r); 4 int Merge_Sort(int A[],int p,int r); 5 int OutPut(int A[],int n); 6 int .....
分类:
编程语言 时间:
2014-09-02 14:01:34
阅读次数:
248
例子:ffmpeg -y -i "1.avi" -title "Test" -vcodec xvid -s 368x208 -r 29.97 -b 1500 -acodec aac -ac 2 -ar 24000 -ab 128 -vol 200 -f psp -muxvb 768 "output....
分类:
其他好文 时间:
2014-09-02 12:11:44
阅读次数:
371
declare cursor s is select version from city_server t; s_ city_server.version%type;begin open s; fetch s into s_; if s_>2 then DBMS_OUTPUT.put_line(s_); end if; close s;end;...
分类:
数据库 时间:
2014-09-02 10:35:24
阅读次数:
200
1 #include 2 using namespace std; 3 int InsertSort(int array[],int n); 4 int OutPut(int array[],int n); 5 int main() 6 { 7 int array[]={5,2,4,6,...
分类:
编程语言 时间:
2014-09-02 10:22:34
阅读次数:
153