copy.h
Upload User: blenddy
Upload Date: 2007-01-07
Package Size: 6495k
Code Size: 1k
Category:

Database system

Development Platform:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * copy.h
  4.  *   Definitions for using the POSTGRES copy command.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: copy.h,v 1.5 1999/02/13 23:21:18 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef COPY_H
  14. #define COPY_H
  15. void DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe, char *filename,
  16.    char *delim);
  17. #endif  /* COPY_H */