代码搜索:fetch
找到约 3,617 项符合「fetch」的源代码
代码结果 3,617
www.eeworm.com/read/147091/5733514
sql fetch_all.sql
use pubs
go
declare cur_title cursor FORWARD_ONLY dynamic--keyset static fast_forward dynamic --FORWARD_ONLY SCROLL
for
select * from titles
open cur_title
if @@error =0
begin
print '游标打开
www.eeworm.com/read/147091/5733515
sql fetch_next.sql
--在简单的游标中使用 FETCH
--下例为 authors 表中姓以字母 B 开头的行声明了一个简单的游标,
--并使用 FETCH NEXT 逐个提取这些行。
--FETCH 语句以单行结果集形式返回由 DECLARE CURSOR 指定的列的值。
USE pubs
GO
DECLARE authors_cursor CURSOR FOR
SELECT au_lname F
www.eeworm.com/read/147091/5733517
rpt fetch_next.rpt
au_lname au_fname
---------------------------------------- --------------------
Bennet Abraham
Blotchet-Halls
www.eeworm.com/read/134479/5892332
br at_gather_fetch.br
// at_gather_fetch.br
// test address-translation code for
// fetching elements of a gather stream
#include
// arbitrary weird stream sizes:
#define RESULT_X 33
#define RESULT_Y 13
#defi
www.eeworm.com/read/134479/5892337
br at_stream_fetch.br
// at_stream_fetch.br
// test address-translation code for
// getting elements of an input stream
#include
// arbitrary weird stream sizes:
#define RESULT_X 5000
#define RESULT_Y 24
#de