declare.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:2k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "DECLARE" {bold} " allows a user to create cursors, which can be used to retrieve a small number of rows at a time out of a larger query. Cursors can return data either in text or in binary foramt. 
  2. Normal cursors return data in text format, either ASCII or another encoding scheme depending on how the Postgres backend was built. Since data is stored natively in binary format, the system 
  3. must do a conversion to produce the text format. In addition, text formats are often larger in size than the corresponding binary format. Once the information comes back in text form, the client 
  4. application may have to convert it to a binary format to manipulate it anyway. 
  5. BINARY cursors give you back the data in the native binary representation. So binary cursors will tend to be a little faster since they suffer less conversion overhead. 
  6. " {} "Synopsis" {bold} "
  7. DECLARE cursor [ BINARY ] [ INSENSITIVE ] [ SCROLL ]
  8.     CURSOR FOR query
  9.     [ FOR [ READ ONLY | UPDATE [ OF column [, ...] ] ]
  10. " {code} "Usage" {bold} "
  11. To declare a cursor: 
  12. " {} "
  13. DECLARE liahona CURSOR
  14.     FOR SELECT * FROM films;
  15.     
  16. " {code} "Notes" {bold} "
  17. Cursors are only available in transactions. 
  18. Postgres does not have an explicit OPEN cursor statement; a cursor is considered to be open when it is declared. 
  19.        Note: In SQL92 cursors are only available in embedded applications. ecpg, the embedded SQL preprocessor for Postgres, supports the SQL92 conventions, including those 
  20.        involving DECLARE and OPEN statements. "