libpq++.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:25k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1.  <chapter id="libpqplusplus">
  2.   <title>libpq C++ Binding</title>
  3.   
  4.   <para>
  5.    <filename>libpq++</filename> is the C++ API to 
  6.    <productname>Postgres</productname>.
  7.    <filename>libpq++</filename>  is a set of classes which allow
  8.    client programs to connect to the 
  9.    <productname>Postgres</productname> backend server. These connections
  10.    come in two forms: a Database Class and a Large Object class.
  11.   </para>
  12.   <para>
  13.    The Database Class is intended for manipulating a database. You can
  14.    send all sorts of SQL queries to the <productname>Postgres</productname> 
  15.    backend server and retrieve the responses of the server.
  16.   </para>
  17.   <para>
  18.    The Large Object Class is intended for manipulating a large object
  19.    in a database. Although a Large Object instance can send normal
  20.    queries to the <productname>Postgres</productname> backend server 
  21.    it is only intended for simple
  22.    queries that do not return any data. A large object should be seen
  23.    as a file stream. In the future it should behave much like the C++ file
  24.    streams
  25.    <literal>cin</literal>,
  26.    <literal>cout</literal>
  27.    and
  28.    <literal>cerr</literal>.
  29.   </para>
  30.   <para>
  31.    This chapter is based on the documentation
  32.    for the <filename>libpq</filename> C library.  Three
  33.    short programs are listed at the end of this section as examples of
  34.    <filename>libpq++</filename> programming 
  35.    (though not necessarily of good programming).
  36.    There are several examples of <filename>libpq++</filename> 
  37.    applications in
  38.    <filename>src/libpq++/examples</filename>, including the source
  39.    code for the three examples in this chapter.
  40.   </para>
  41.   <sect1>
  42.    <title>Control and Initialization</title>
  43.     
  44.    <sect2>
  45.     <title>Environment Variables</title>
  46.     <para>
  47.      The following environment variables can be used to set up default
  48.      values for an environment and to avoid hard-coding database names into
  49.      an application program:
  50.      <note>
  51.       <para>
  52.        Refer to the <xref endterm="libpq" linkend="libpq-envars"> for a complete
  53.        list of available connection options.
  54.       </para>
  55.      </note>
  56.     </para>
  57.     <para>
  58.      The following environment variables can be used to select default
  59.      connection parameter values, which will be used by PQconnectdb or
  60.      PQsetdbLogin if no value is directly specified by the calling code.
  61.      These are useful to avoid hard-coding database names into simple
  62.      application programs.
  63.      <note>
  64.       <para>
  65.        <filename>libpq++</filename> uses only environment variables or PQconnectdb
  66.        conninfo style strings.
  67.       </para>
  68.      </note>
  69.   
  70.      <itemizedlist>
  71.       <listitem>
  72.        <para>
  73. <envar>PGHOST</envar> sets the default server name.
  74. If a non-zero-length string is specified, TCP/IP communication is used.
  75. Without a host name, libpq will connect using a local Unix domain socket.
  76.        </para>
  77.       </listitem>
  78.       <listitem>
  79.        <para>
  80. <envar>PGPORT</envar>  sets the default port or local Unix domain socket
  81. file extension for communicating with the <productname>Postgres</productname>
  82. backend.
  83.        </para>
  84.       </listitem>
  85.       <listitem>
  86.        <para>
  87. <envar>PGDATABASE</envar>  sets the default 
  88. <productname>Postgres</productname> database name.
  89.        </para>
  90.       </listitem>
  91.       <listitem>
  92.        <para>
  93. <envar>PGUSER</envar>
  94. sets the username used to connect to the database and for authentication.
  95.        </para>
  96.       </listitem>
  97.       <listitem>
  98.        <para>
  99. <envar>PGPASSWORD</envar>
  100. sets the password used if the backend demands password authentication.
  101.        </para>
  102.       </listitem>
  103.       <listitem>
  104.        <para>
  105. <envar>PGREALM</envar> sets the Kerberos realm to  use  with  
  106. <productname>Postgres</productname>,
  107. if  it is different from the local realm.  If
  108. <envar>PGREALM</envar> is set, <productname>Postgres</productname> 
  109. applications  will  attempt
  110. authentication  with  servers for this realm and use
  111. separate ticket files to avoid conflicts with  local
  112. ticket  files.   This  environment  variable is only
  113. used if Kerberos authentication is selected by the backend.
  114.        </para>
  115.       </listitem>
  116.       <listitem>
  117.        <para>
  118. <envar>PGOPTIONS</envar> sets additional runtime  options  for  
  119. the <productname>Postgres</productname> backend.
  120.        </para>
  121.       </listitem>
  122.       <listitem>
  123.        <para>
  124. <envar>PGTTY</envar> sets the file or tty on which  debugging  
  125. messages from the backend server are displayed.
  126.        </para>
  127.       </listitem>
  128.      </itemizedlist>
  129.     </para>
  130.     <para>
  131.      The following environment variables can be used to specify user-level default
  132.      behavior for every Postgres session:
  133.   
  134.      <itemizedlist>
  135.       <listitem>
  136.        <para>
  137. <envar>PGDATESTYLE</envar>
  138. sets the default style of date/time representation.
  139.        </para>
  140.       </listitem>
  141.       <listitem>
  142.        <para>
  143. <envar>PGTZ</envar>
  144. sets the default time zone.
  145.        </para>
  146.       </listitem>
  147.      </itemizedlist>
  148.     </para>
  149.     
  150.     <para>
  151.      The following environment variables can be used to specify default internal
  152.      behavior for every Postgres session:
  153.      
  154.      <itemizedlist>
  155.       <listitem>
  156.        <para>
  157. <envar>PGGEQO</envar>
  158. sets the default mode for the genetic optimizer.
  159.        </para>
  160.       </listitem>
  161.       <listitem>
  162.        <para>
  163. <envar>PGRPLANS</envar>
  164. sets the default mode to allow or disable right-sided plans in the optimizer.
  165.        </para>
  166.       </listitem>
  167.       <listitem>
  168.        <para>
  169. <envar>PGCOSTHEAP</envar>
  170. sets the default cost for heap searches for the optimizer.
  171.        </para>
  172.       </listitem>
  173.       <listitem>
  174.        <para>
  175. <envar>PGCOSTINDEX</envar>
  176. sets the default cost for indexed searches for the optimizer.
  177.        </para>
  178.       </listitem>
  179.      </itemizedlist>
  180.     </para>
  181.     <para>
  182.      Refer to the <command>SET</command> <acronym>SQL</acronym> command
  183.      for information on correct values for these environment variables.
  184.     </para>
  185.    </sect2>
  186.   </sect1>
  187.   <sect1>
  188.    <title>libpq++ Classes</title>
  189.    <sect2>
  190.     <title>Connection Class: <classname>PgConnection</classname></title>
  191.     <para>
  192.      The connection class makes the actual connection to the database and is inherited
  193.      by all of the access classes.
  194.     </para>
  195.    </sect2>
  196.    <sect2>
  197.     <title>Database Class: <classname>PgDatabase</classname></title>
  198.     <para>
  199.      The database class provides C++ objects that have a connection
  200.      to a backend server. To create such an object one first needs
  201.      the apropriate environment for the backend to access.
  202.      The following constructors deal with making a connection to a backend
  203.      server from a C++ program.
  204.     </para>
  205.    </sect2>
  206.   </sect1>
  207.   <sect1>
  208.    <title>Database Connection Functions</title>
  209.    <para>
  210.     <itemizedlist>
  211.      <listitem>
  212.       <para>
  213.        <function>PgConnection</function>
  214.        makes a new connection to a backend database server.
  215.        <synopsis>
  216. PgConnection::PgConnection(const char *conninfo)
  217.        </synopsis>
  218.        Although typically called from one of the access classes, a connection to
  219.        a backend server is possible by creating a PgConnection object.
  220.       </para>
  221.      </listitem>
  222.      <listitem>
  223.       <para>
  224.        <function>ConnectionBad</function>
  225.        returns whether or not the connection to the backend server succeeded or
  226.        failed.  
  227.        <synopsis>
  228. int PgConnection::ConnectionBad()
  229.        </synopsis>
  230.        Returns TRUE if the connection failed.
  231.       </para>
  232.      </listitem>
  233.      <listitem>
  234.       <para>
  235.        <function>Status</function>
  236.        returns the status of the connection to the backend server.
  237.        <synopsis>
  238. ConnStatusType PgConnection::Status()
  239.        </synopsis>
  240.        Returns either CONNECTION_OK or CONNECTION_BAD depending on the state
  241.        of the connection.
  242.       </para>
  243.      </listitem>
  244.      <listitem>
  245.       <para>
  246.        <function>PgDatabase</function>
  247.        makes a new connection to a backend database server.
  248.        <synopsis>
  249. PgDatabase(const char *conninfo)
  250.        </synopsis>
  251.        After a PgDatabase has been created it should be checked to make sure
  252.        the connection to the database succeded before sending
  253.        queries to the object. This can easily be done by
  254.        retrieving the current status of the PgDatabase object with the
  255.        <function>Status</function> or <function>ConnectionBad</function> methods.
  256.       </para>
  257.      </listitem>
  258.      <listitem>
  259.       <para>
  260.        <function>DBName</function>
  261.        Returns the name of the current database.
  262.        <synopsis>
  263. const char *PgConnection::DBName()
  264.        </synopsis>
  265.       </para>
  266.      </listitem>
  267.      <listitem>
  268.       <para>
  269.        <function>Notifies</function>
  270.        Returns the next notification from a list of unhandled notification messages 
  271.        received from the backend.
  272.        <synopsis>
  273. PGnotify* PgConnection::Notifies()
  274.        </synopsis>
  275.        See PQnotifies() for details.
  276.       </para>
  277.      </listitem>
  278.     </itemizedlist>
  279.    </para>
  280.   </sect1>
  281.   <sect1>
  282.    <title>Query Execution Functions</title>
  283.    <para>  
  284.     <itemizedlist>
  285.      <listitem>
  286.       <para>
  287.        <function>Exec</function>
  288.        Sends a query to the backend server.  It's probably more desirable to
  289.        use one of the next two functions.
  290.        <synopsis>
  291. ExecStatusType PgConnection::Exec(const char* query)
  292.        </synopsis>
  293.        Returns the result of the query. The following status results can be expected:
  294.        
  295.        <simplelist>
  296. <member>
  297.  PGRES_EMPTY_QUERY
  298. </member>
  299. <member>
  300.  PGRES_COMMAND_OK, if the query was a command
  301. </member>
  302. <member>
  303.  PGRES_TUPLES_OK, if the query successfully returned tuples
  304. </member>
  305. <member>
  306.  PGRES_COPY_OUT
  307. </member>
  308. <member>
  309.  PGRES_COPY_IN
  310. </member>
  311. <member>
  312.  PGRES_BAD_RESPONSE, if an unexpected response was received
  313. </member>
  314. <member>
  315.  PGRES_NONFATAL_ERROR
  316. </member>
  317. <member>
  318.  PGRES_FATAL_ERROR
  319. </member>
  320.        </simplelist>
  321.       </para>
  322.      </listitem>
  323.      <listitem>
  324.       <para>
  325.        <function>ExecCommandOk</function>
  326.        Sends a command query to the backend server.
  327.        <synopsis>
  328. int PgConnection::ExecCommandOk(const char *query)
  329.        </synopsis>
  330.        Returns TRUE if the command query succeeds.
  331.       </para>
  332.      </listitem>
  333.      <listitem>
  334.       <para>
  335.        <function>ExecTuplesOk</function>
  336.        Sends a command query to the backend server.
  337.        <synopsis>
  338. int PgConnection::ExecTuplesOk(const char *query)
  339.        </synopsis>
  340.        Returns TRUE if the command query succeeds and there are tuples to be retrieved.
  341.       </para>
  342.      </listitem>
  343.      <listitem>
  344.       <para>
  345.        <function>ErrorMessage</function>
  346.        Returns the last error message text.
  347.        <synopsis>
  348. const char *PgConnection::ErrorMessage()
  349.        </synopsis>
  350.       </para>
  351.      </listitem>
  352.      <listitem>
  353.       <para>
  354.        <function>Tuples</function>
  355.        Returns the number of tuples (instances) in the query result. 
  356.        <synopsis>
  357. int PgDatabase::Tuples()
  358.        </synopsis>
  359.       </para>
  360.      </listitem>
  361.      <listitem>
  362.       <para>
  363.        <function>Fields</function>
  364.        Returns the number of fields (attributes) in each tuple of the query result. 
  365.        <synopsis>
  366. int PgDatabase::Fields()
  367.        </synopsis>
  368.       </para>
  369.      </listitem>
  370.      <listitem>
  371.       <para>
  372.        <function>FieldName</function>
  373.        Returns the field (attribute) name associated with the given field index. 
  374.        Field indices start at 0. 
  375.        <synopsis>
  376. const char *PgDatabase::FieldName(int field_num)
  377.        </synopsis>
  378.       </para>
  379.      </listitem>
  380.      <listitem>
  381.       <para>
  382.        <function>FieldNum</function>
  383.        PQfnumber Returns the field (attribute) index associated with 
  384.        the given field name. 
  385.        <synopsis>
  386. int PgDatabase::FieldNum(const char* field_name)
  387.        </synopsis>
  388.        -1 is returned if the given name does not match any field.
  389.       </para>
  390.      </listitem>
  391.      <listitem>
  392.       <para>
  393.        <function>FieldType</function>
  394.        Returns the field type associated with the given field index. The 
  395.        integer returned is an internal coding of the type. Field indices
  396.        start at 0. 
  397.        <synopsis>
  398. Oid PgDatabase::FieldType(int field_num)
  399.        </synopsis>
  400.       </para>
  401.      </listitem>
  402.      <listitem>
  403.       <para>
  404.        <function>FieldType</function>
  405.        Returns the field type associated with the given field name. The 
  406.        integer returned is an internal coding of the type. Field indices
  407.        start at 0. 
  408.        <synopsis>
  409. Oid PgDatabase::FieldType(const char* field_name)
  410.        </synopsis>
  411.       </para>
  412.      </listitem>
  413.      <listitem>
  414.       <para>
  415.        <function>FieldSize</function>
  416.        Returns the size in bytes of the field associated with the given 
  417.        field index. Field indices start at 0. 
  418.        <synopsis>
  419. short PgDatabase::FieldSize(int field_num)
  420.        </synopsis>
  421.        Returns the space allocated for this field in a database tuple given
  422.        the field number. In other words the size of the server's binary 
  423.        representation of the data type. -1 is returned if the field is 
  424.        variable size.
  425.       </para>
  426.      </listitem>
  427.      <listitem>
  428.       <para>
  429.        <function>FieldSize</function>
  430.        Returns the size in bytes of the field associated with the given 
  431.        field index. Field indices start at 0. 
  432.        <synopsis>
  433. short PgDatabase::FieldSize(const char *field_name)
  434.        </synopsis>
  435.        Returns the space allocated for this field in a database tuple given
  436.        the field name. In other words the size of the server's binary 
  437.        representation of the data type. -1 is returned if the field is 
  438.        variable size.
  439.       </para>
  440.      </listitem>
  441.      <listitem>
  442.       <para>
  443.        <function>GetValue</function>
  444.        Returns a single field (attribute) value of one tuple of a PGresult. 
  445.        Tuple and field indices start at 0. 
  446.        <synopsis>
  447. const char *PgDatabase::GetValue(int tup_num, int field_num)
  448.        </synopsis>
  449.        For most queries, the value returned by GetValue is a null-terminated 
  450.        ASCII string representation of the attribute value. But if BinaryTuples() 
  451.        is TRUE, the value returned by GetValue is the binary representation 
  452.        of the type in the internal format of the backend server (but not including 
  453.        the size word, if the field is variable-length). It is then the programmer's 
  454.        responsibility to cast and convert the data to the correct C type. The 
  455.        pointer returned by GetValue points to storage that is part of the 
  456.        PGresult structure. One should not modify it, and one must explicitly 
  457.        copy the value into other storage if it is to be used past the lifetime 
  458.        of the PGresult structure itself.  BinaryTuples() is not yet implemented.
  459.       </para>
  460.      </listitem>
  461.      <listitem>
  462.       <para>
  463.        <function>GetValue</function>
  464.        Returns a single field (attribute) value of one tuple of a PGresult. 
  465.        Tuple and field indices start at 0. 
  466.        <synopsis>
  467. const char *PgDatabase::GetValue(int tup_num, const char *field_name)
  468.        </synopsis>
  469.        For most queries, the value returned by GetValue is a null-terminated 
  470.        ASCII string representation of the attribute value. But if BinaryTuples() 
  471.        is TRUE, the value returned by GetValue is the binary representation 
  472.        of the type in the internal format of the backend server (but not including 
  473.        the size word, if the field is variable-length). It is then the programmer's 
  474.        responsibility to cast and convert the data to the correct C type. The 
  475.        pointer returned by GetValue points to storage that is part of the 
  476.        PGresult structure. One should not modify it, and one must explicitly 
  477.        copy the value into other storage if it is to be used past the lifetime 
  478.        of the PGresult structure itself.  BinaryTuples() is not yet implemented.
  479.       </para>
  480.      </listitem>
  481.      <listitem>
  482.       <para>
  483.        <function>GetLength</function>
  484.        Returns the length of a field (attribute) in bytes. Tuple and field 
  485.        indices start at 0. 
  486.        <synopsis>
  487. int PgDatabase::GetLength(int tup_num, int field_num)
  488.        </synopsis>
  489.        This is the actual data length for the particular data value, that 
  490.        is the size of the object pointed to by GetValue. Note that for
  491.        ASCII-represented values, this size has little to do with the binary 
  492.        size reported by PQfsize.
  493.       </para>
  494.      </listitem>
  495.      <listitem>
  496.       <para>
  497.        <function>GetLength</function>
  498.        Returns the length of a field (attribute) in bytes. Tuple and field 
  499.        indices start at 0. 
  500.        <synopsis>
  501. int PgDatabase::GetLength(int tup_num, const char* field_name)
  502.        </synopsis>
  503.        This is the actual data length for the particular data value, that 
  504.        is the size of the object pointed to by GetValue. Note that for
  505.        ASCII-represented values, this size has little to do with the binary 
  506.        size reported by PQfsize.
  507.       </para>
  508.      </listitem>
  509.      <listitem>
  510.       <para>
  511.        <function>DisplayTuples</function>
  512.        Prints out all the tuples and, optionally, the attribute names to the 
  513.        specified output stream. 
  514.        <synopsis>
  515. void PgDatabase::DisplayTuples(FILE *out = 0, int fillAlign = 1, 
  516. const char* fieldSep = "|",int printHeader = 1, int quiet = 0)
  517.        </synopsis>
  518.       </para>
  519.      </listitem>
  520.      <listitem>
  521.       <para>
  522.        <function>PrintTuples</function>
  523.        Prints out all the tuples and, optionally, the attribute names to the 
  524.        specified output stream. 
  525.        <synopsis>
  526. void PgDatabase::PrintTuples(FILE *out = 0, int printAttName = 1, 
  527. int terseOutput = 0, int width = 0) 
  528.        </synopsis>
  529.       </para>
  530.      </listitem>
  531.      <listitem>
  532.       <para>
  533.        <function>GetLine</function>
  534.        <synopsis>
  535. int PgDatabase::GetLine(char* string, int length)
  536.        </synopsis>
  537.       </para>
  538.      </listitem>
  539.      <listitem>
  540.       <para>
  541.        <function>PutLine</function>
  542.        <synopsis>
  543. void PgDatabase::PutLine(const char* string)
  544.        </synopsis>
  545.       </para>
  546.      </listitem>
  547.      <listitem>
  548.       <para>
  549.        <function>OidStatus</function>
  550.        <synopsis>
  551. const char *PgDatabase::OidStatus()
  552.        </synopsis>
  553.       </para>
  554.      </listitem>
  555.      <listitem>
  556.       <para>
  557.        <function>EndCopy</function>
  558.        <synopsis>
  559. int PgDatabase::EndCopy()
  560.        </synopsis>
  561.       </para>
  562.      </listitem>
  563.     </itemizedlist>
  564.    </para>
  565.   </sect1>
  566.   <sect1>
  567.    <title>Asynchronous Notification</title>
  568.     
  569.    <para>
  570.     <productname>Postgres</productname> supports asynchronous notification 
  571.     via the <command>LISTEN</command> and <command>NOTIFY</command>
  572.     commands.  A backend registers its interest in a particular semaphore
  573.     with the <command>LISTEN</command> command.
  574.     All backends that are listening on a
  575.     particular named semaphore will be notified asynchronously when 
  576.     a <command>NOTIFY</command> of
  577.     that name is executed by another backend.   No additional
  578.     information is passed from the notifier to the listener.  Thus,
  579.     typically, any actual data that needs to be communicated is transferred
  580.     through the relation.
  581.     
  582.     <note>
  583.      <para>
  584.       In the past, the documentation has associated the names used for asyncronous
  585.       notification with relations or classes. However, there is in fact no
  586.       direct linkage of the two concepts in the implementation, and the
  587.       named semaphore in fact does not need to have a corresponding relation
  588.       previously defined.
  589.      </para>
  590.     </note>
  591.    </para>
  592.    <para>
  593.     <filename>libpq++</filename> applications are notified whenever a 
  594.     connected backend has
  595.     received an asynchronous notification.  However, the communication from
  596.     the backend to the frontend is not asynchronous.  
  597.     The <filename>libpq++</filename> application
  598.     must poll the backend to see if there is any pending notification
  599.     information.  After the execution of a query, a frontend may call 
  600.     <function>PgDatabase::Notifies</function>
  601.     to see if any notification data is currently available from the backend. 
  602.     <function>PgDatabase::Notifies</function>
  603.     returns the notification from a list of unhandled notifications from the
  604.     backend. The function eturns NULL if there is no pending notifications from the
  605.     backend.   
  606.     <function>PgDatabase::Notifies</function>
  607.     behaves like the popping of a stack.  Once a notification is returned
  608.     from <function>PgDatabase::Notifies</function>,
  609.     it is considered handled and will be removed from the list of
  610.     notifications.
  611.     
  612.     <itemizedlist>
  613.      <listitem>
  614.       <para>
  615.        <function>PgDatabase::Notifies</function>
  616.        retrieves pending notifications from the server.
  617.        
  618.        <synopsis>
  619. PGnotify* PgDatabase::Notifies()
  620.        </synopsis>
  621.       </para>
  622.      </listitem>
  623.     </itemizedlist>
  624.    </para>
  625.    <para>
  626.     The second sample program gives an example of the use of asynchronous
  627.     notification.
  628.    </para>
  629.   </sect1>
  630.   <sect1>
  631.    <title>Functions Associated with the COPY Command</title>
  632.    
  633.    <para>
  634.     The <command>copy</command> command in <productname>Postgres</productname> 
  635.     has options to read from or write to the network
  636.     connection used by <filename>libpq++</filename>.  
  637.     Therefore, functions are necessary to
  638.     access this network connection directly so applications may take full
  639.     advantage of this capability.
  640.     
  641.     <itemizedlist>
  642.      <listitem>
  643.       <para>
  644.        <function>PgDatabase::GetLine</function>
  645.        reads a newline-terminated line of characters (transmitted by the
  646.        backend server) into a buffer 
  647.        <replaceable class="parameter">string</replaceable>
  648.        of size <replaceable class="parameter">length</replaceable>.
  649.        <synopsis>
  650. int PgDatabase::GetLine(char* string, int length)
  651.        </synopsis>
  652.       </para>
  653.       <para>
  654.        Like the Unix system routine
  655.        <function>fgets (3)</function>,
  656.        this routine copies up to 
  657.        <literal><replaceable class="parameter">length</replaceable>-1</literal>
  658.        characters into 
  659.        <replaceable class="parameter">string</replaceable>.
  660.        It is like 
  661.        <function>gets (3)</function>,
  662.        however, in that it converts the terminating newline into a null
  663.        character.
  664.       </para>
  665.       <para>
  666.        <function>PgDatabase::GetLine</function>
  667.        returns EOF at end of file, 0 if the entire line has been read, and 1 if the
  668.        buffer is full but the terminating newline has not yet been read.
  669.       </para>
  670.       <para>
  671.        Notice that the application must check to see if a new line consists
  672.        of a single period ("."), which indicates that the backend
  673.        server has finished sending the results of the 
  674.        <command>copy</command>.
  675.        Therefore, if the application ever expects to receive lines
  676.        that are more than
  677.        <literal><replaceable class="parameter">length</replaceable>-1</literal>
  678.        characters long, the application must be sure to check the return
  679.        value of <function>PgDatabase::GetLine</function> very carefully.
  680.       </para>
  681.      </listitem>
  682.      <listitem>
  683.       <para>
  684.        <function>PgDatabase::PutLine</function>
  685.        Sends a null-terminated <replaceable class="parameter">string</replaceable>
  686.        to the backend server.
  687.        <synopsis>
  688. void PgDatabase::PutLine(char* string)
  689.        </synopsis>
  690.       </para>
  691.       <para>
  692.        The application must explicitly send a single period character (".")
  693.        to indicate to the backend that it has finished sending its data.
  694.       </para>
  695.      </listitem>
  696.      <listitem>
  697.       <para>
  698.        <function>PgDatabase::EndCopy</function>
  699.        syncs with the backend.
  700.        <synopsis>
  701. int PgDatabase::EndCopy()
  702.        </synopsis>
  703.        This function waits until the backend has
  704.        finished processing the <command>copy</command>.
  705.        It should either be issued when the
  706.        last string has been sent to the backend using
  707.        <function>PgDatabase::PutLine</function>
  708.        or when the last string has been received from the backend using
  709.        <function>PgDatabase::GetLine</function>.
  710.        It must be issued or the backend may get <quote>out of sync</quote> with
  711.        the frontend.  Upon return from this function, the backend is ready to
  712.        receive the next query.
  713.       </para>     
  714.       <para>
  715.        The return value is 0 on successful completion, nonzero otherwise.
  716.       </para>
  717.      </listitem>
  718.     </itemizedlist>
  719.    </para>
  720.    <para>
  721.     As an example:
  722.     
  723.     <programlisting>
  724. PgDatabase data;
  725. data.Exec("create table foo (a int4, b char16, d float8)");
  726. data.Exec("copy foo from stdin");
  727. data.putline("3etHello Worldet4.5en");
  728. data.putline("4etGoodbye Worldet7.11en");
  729. &amp;...
  730. data.putline(".en");
  731. data.endcopy();
  732.     </programlisting>
  733.    </para>
  734.   </sect1>
  735.   <sect1>
  736.    <title>Caveats</title>
  737.     
  738.    <para>
  739.     The query buffer is 8192 bytes long, and queries over that length will
  740.     be silently truncated.
  741.    </para>
  742.   </sect1>
  743.  </chapter>
  744. <!-- Keep this comment at the end of the file
  745. Local variables:
  746. mode: sgml
  747. sgml-omittag:nil
  748. sgml-shorttag:t
  749. sgml-minimize-attributes:nil
  750. sgml-always-quote-attributes:t
  751. sgml-indent-step:1
  752. sgml-indent-data:t
  753. sgml-parent-document:nil
  754. sgml-default-dtd-file:"./reference.ced"
  755. sgml-exposed-tags:nil
  756. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  757. sgml-local-ecat-files:nil
  758. End:
  759. -->