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

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="ecpg">
  2. <DocInfo>
  3. <AuthorGroup>
  4. <Author>
  5. <FirstName>Linux</FirstName>
  6. <Surname>Tolke</Surname>
  7. </Author>
  8. <Author>
  9. <FirstName>Michael</FirstName>
  10. <Surname>Meskes</Surname>
  11. </Author>
  12. </AuthorGroup>
  13. <Copyright>
  14. <Year>1996-1997</Year>
  15. <Holder>Linus Tolke</Holder>
  16. </Copyright>
  17. <Copyright>
  18. <Year>1998</Year>
  19. <Holder>Michael Meskes</Holder>
  20. </Copyright>
  21. <Date>Transcribed 1998-02-12</Date>
  22. </DocInfo>
  23. <Title><Application>ecpg</Application> - Embedded <Acronym>SQL</Acronym> 
  24. in <Acronym>C</Acronym></Title>
  25. <Para>
  26. This describes an embedded <Acronym>SQL</Acronym> in <Acronym>C</Acronym> 
  27. package for <ProductName>Postgres</ProductName>.
  28. It is written by <ULink url="mailto:linus@epact.se">Linus Tolke</ULink>
  29. and <ULink url="mailto:meskes@postgresql.org">Michael Meskes</ULink>.
  30. <Note>
  31. <Para>
  32. Permission is granted to copy and use in the same way as you are allowed
  33. to copy and use the rest of the <ProductName>PostgreSQL</ProductName>.
  34. </Para>
  35. </Note>
  36. </para>
  37. <Sect1>
  38. <Title>Why Embedded <Acronym>SQL</Acronym>?</Title>
  39. <Para>
  40. Embedded <Acronym>SQL</Acronym> has some small advantages over other ways 
  41. to handle <Acronym>SQL</Acronym>
  42. queries. It takes care of all the tedious moving of information to and
  43. from variables in your <Acronym>C</Acronym> program. 
  44. Many <Acronym>RDBMS</Acronym> packages
  45. support this embedded language.
  46. </Para>
  47. <Para> There is an ANSI-standard describing how the embedded language should
  48. work. <Application>ecpg</Application> was designed to meet this standard 
  49. as much as possible. So it is
  50. possible to port programs with embedded <Acronym>SQL</Acronym> written for
  51. other <Acronym>RDBMS</Acronym> packages to
  52. <ProductName>Postgres</ProductName> and thus promoting the spirit of free
  53. software.
  54. </Para>
  55. </sect1>
  56. <Sect1>
  57. <Title>The Concept</Title>
  58. <Para>
  59. You write your program in <Acronym>C</Acronym> with some 
  60. special <Acronym>SQL</Acronym> things.
  61. For declaring variables that can be used in 
  62. <Acronym>SQL</Acronym> statements you need to
  63. put them in a special declare section.
  64. You use a special syntax for the <Acronym>SQL</Acronym> queries.
  65. </Para>
  66. <Para>
  67. Before compiling you run the file through 
  68. the embedded <Acronym>SQL</Acronym> <Acronym>C</Acronym>
  69. preprocessor and it converts the <Acronym>SQL</Acronym> statements you used 
  70. to function
  71. calls with the variables used as arguments. Both variables that are used
  72. as input to the <Acronym>SQL</Acronym> statements and variables that will 
  73. contain the
  74. result are passed.
  75. </Para>
  76. <Para>
  77. Then you compile and at link time you link with a special library that
  78. contains the functions used. These functions (actually it is mostly one
  79. single function) fetches the information from the arguments, performs
  80. the <Acronym>SQL</Acronym> query using the ordinary interface 
  81. (<FileName>libpq</FileName>) and puts back
  82. the result in the arguments dedicated for output.
  83. </Para>
  84. <Para>
  85. Then you run your program and when the control arrives to 
  86. the <Acronym>SQL</Acronym>
  87. statement the <Acronym>SQL</Acronym> statement is performed against 
  88. the database and you
  89. can continue with the result.
  90. </Para>
  91. </sect1>
  92. <Sect1>
  93. <Title>How To Use <Application>egpc</Application></Title>
  94. <Para>
  95. This section describes how to use the <Application>egpc</Application> tool.
  96. </Para>
  97. <Sect2>
  98. <Title>Preprocessor</title>
  99. <Para>
  100. The preprocessor is called <Application>ecpg</Application>. 
  101. After installation it resides in
  102. the <ProductName>Postgres</ProductName> <FileName>bin/</FileName> directory. 
  103. </Para>
  104. </sect2>
  105. <Sect2>
  106. <Title>Library</title>
  107. <Para>
  108. The <Application>ecpg</Application> library is called 
  109. <FileName>libecpg.a</FileName> or
  110. <FileName>libecpg.so</FileName>. Additionally, the library
  111. uses the <FileName>libpq</FileName> library for communication to the 
  112. <ProductName>Postgres</ProductName> server so you will
  113. have to link your program with <Parameter>-lecpg -lpq</Parameter>.
  114. </Para>
  115. <Para>
  116. The library has some methods that are "hidden" but that could prove very
  117. useful sometime.
  118. <itemizedlist>
  119. <listitem>
  120. <para>
  121. <function>ECPGdebug(int <replaceable class="parameter">on</replaceable>, FILE *<replaceable class="parameter">stream</replaceable>)</function>
  122. turns on debug logging if called with the first argument non-zero.
  123. Debug logging is done on <replaceable class="parameter">stream</replaceable>.
  124.  Most <Acronym>SQL</Acronym> statement logs its arguments and result.
  125. </Para>
  126. <Para>
  127. The most important one (<Function>ECPGdo</Function>) 
  128. that is called on almost all <Acronym>SQL</Acronym>
  129. statements logs both its expanded string,
  130.  i.e. the string
  131. with all the input variables inserted, and the result from the
  132. <ProductName>Postgres</ProductName> server.
  133.  This can be very useful when searching for errors
  134. in your <Acronym>SQL</Acronym> statements.
  135. </Para>
  136. </ListItem>
  137. <listitem>
  138. <para>
  139. <function>ECPGstatus()</function>
  140. This method returns TRUE if we are connected to a database and FALSE if not.
  141. </Para>
  142. </ListItem>
  143. </itemizedlist>
  144. </Para>
  145. </sect2>
  146. <Sect2>
  147. <Title>Error handling</title>
  148. <Para>
  149. To be able to detect errors from the <ProductName>Postgres</ProductName> 
  150. server you include a line like
  151. <ProgramListing>
  152. exec sql include sqlca;
  153. </ProgramListing>
  154. in the include section of your file. This will define a struct and a
  155. variable with the name <Parameter>sqlca</Parameter> as following:
  156. <ProgramListing>
  157. struct sqlca
  158. {
  159.  char sqlcaid[8];
  160.  long sqlabc;
  161.  long sqlcode;
  162.  struct
  163.  {
  164.   int sqlerrml;
  165.   char sqlerrmc[70];
  166.  } sqlerrm;
  167.  char sqlerrp[8];
  168.  long sqlerrd[6];
  169.  /* 0: empty                                         */
  170.  /* 1: empty                                         */
  171.  /* 2: number of rows processed in an INSERT, UPDATE */
  172.  /*    or DELETE statement                           */
  173.  /* 3: empty                                         */
  174.  /* 4: empty                                         */
  175.  /* 5: empty                                         */
  176.  char sqlwarn[8];
  177.  /* 0: set to 'W' if at least one other is 'W'       */
  178.  /* 1: if 'W' at least one character string      */
  179.  /*    value was truncated when it was               */
  180.  /*    stored into a host variable.                  */
  181.  /* 2: empty                                         */
  182.  /* 3: empty                                         */
  183.  /* 4: empty                                         */
  184.  /* 5: empty                                         */
  185.  /* 6: empty                                         */
  186.  /* 7: empty                                         */
  187.  char sqlext[8];
  188. } sqlca;
  189. </ProgramListing>
  190. </Para>
  191. <Para>
  192. If an error occured in the last <Acronym>SQL</Acronym> statement 
  193. then <Parameter>sqlca.sqlcode</Parameter>
  194. will be non-zero. If <Parameter>sqlca.sqlcode</Parameter> is less that 0
  195.  then this is
  196. some kind of serious error, like the database definition does not match
  197. the query given. If it is bigger than 0 then this is a normal error like
  198. the table did not contain the requested row.
  199. </Para>
  200. <Para>
  201. sqlca.sqlerrm.sqlerrmc will contain a string that describes the error.
  202. The string ends with the line number
  203. in the source file.
  204. </Para>
  205. <Para>
  206. List of errors that can occur:
  207. <VariableList>
  208. <VarListEntry>
  209. <Term>-12, Out of memory in line %d.</Term>
  210. <ListItem>
  211. <Para>
  212. Does not normally occur. This is a sign that your virtual memory is
  213. exhausted.
  214. </Para>
  215. </ListItem>
  216. </VarListEntry>
  217. <VarListEntry>
  218. <Term>-200, Unsupported type %s on line %d.</Term>
  219. <ListItem>
  220. <Para>
  221. Does not normally occur. This is a sign that the preprocessor has
  222. generated something that the library does not know about. Perhaps you
  223. are running incompatible versions of the preprocessor and the library.
  224. </Para>
  225. </ListItem>
  226. </VarListEntry>
  227. <VarListEntry>
  228. <Term>-201, Too many arguments line %d.</Term>
  229. <ListItem>
  230. <Para>
  231. This means that <ProductName>Postgres</ProductName> has returned more
  232. arguments than we have
  233. matching variables. Perhaps you have forgotten a couple of the host
  234. variables in the <Command>INTO :var1,:var2</Command>-list.
  235. </Para>
  236. </ListItem>
  237. </VarListEntry>
  238. <VarListEntry>
  239. <Term>-202, Too few arguments line %d.</Term>
  240. <ListItem>
  241. <Para>
  242. This means that <ProductName>Postgres</ProductName> has returned fewer
  243. arguments than we have
  244. host variables. Perhaps you have too many host variables in the 
  245. <Command>INTO :var1,:var2</Command>-list.
  246. </Para> 
  247. </ListItem>
  248. </VarListEntry>
  249. <VarListEntry>
  250. <Term>-203, Too many matches line %d.</Term>
  251. <ListItem>
  252. <Para>
  253. This means that the query has returned several lines but the
  254. variables specified are no arrays. The <Command>SELECT</Command> you made
  255. probably was not unique.
  256. </Para>
  257. </ListItem>
  258. </VarListEntry>
  259. <VarListEntry>
  260. <Term>-204, Not correctly formatted int type: %s line %d.</Term>
  261. <ListItem>
  262. <Para>
  263. This means that the host variable is of an <Type>int</Type> type and the field
  264. in the <ProductName>Postgres</ProductName> database is of another type and 
  265. contains a value that cannot be interpreted as an <Type>int</Type>. 
  266. The library uses <Function>strtol</Function>
  267. for this conversion.
  268. </Para>
  269. </ListItem>
  270. </VarListEntry>
  271. <VarListEntry>
  272. <Term>-205, Not correctly formatted unsigned type: %s line %d.</Term>
  273. <ListItem>
  274. <Para>
  275. This means that the host variable is of an <Type>unsigned int</Type> type and
  276. the field in the <ProductName>Postgres</ProductName> database is of another 
  277. type and contains a
  278. value that cannot be interpreted as an <Type>unsigned int</Type>. The library
  279. uses <Function>strtoul</Function> for this conversion.
  280. </Para>
  281. </ListItem>
  282. </VarListEntry>
  283. <VarListEntry>
  284. <Term>-206, Not correctly formatted floating point type: %s line %d.</Term>
  285. <ListItem>
  286. <Para>
  287. This means that the host variable is of a <Type>float</Type> type and
  288. the field in the <ProductName>Postgres</ProductName> database is of another 
  289. type and contains a
  290. value that cannot be interpreted as an <Type>float</Type>. The library
  291. uses <Function>strtod</Function> for this conversion.
  292. </Para>
  293. </ListItem>
  294. </VarListEntry>
  295. <VarListEntry>
  296. <Term>-207, Unable to convert %s to bool on line %d.</Term>
  297. <ListItem>
  298. <Para>
  299. This means that the host variable is of a <Type>bool</Type> type and
  300. the field in the <ProductName>Postgres</ProductName> database is neither 't'
  301. nor 'f'.
  302. </Para>
  303. </ListItem>
  304. </VarListEntry>
  305. <VarListEntry>
  306. <Term>-208, Empty query line %d.</Term>
  307. <ListItem>
  308. <Para>
  309. <ProductName>Postgres</ProductName> returned PGRES_EMPTY_QUERY, probably
  310. because the query indeed was empty.
  311. </Para>
  312. </ListItem>
  313. </VarListEntry>
  314. <VarListEntry>
  315. <Term>-220, No such connection %s in line %d.</Term>
  316. <ListItem>
  317. <Para>
  318. The program tries to access a connection that does not exist.
  319. </Para>
  320. </ListItem>
  321. </VarListEntry>
  322. <VarListEntry>
  323. <Term>-221, Not connected in line %d.</Term>
  324. <ListItem>
  325. <Para>
  326. The program tries to access a connection that does exist but is not open.
  327. </Para>
  328. </ListItem>
  329. </VarListEntry>
  330. <VarListEntry>
  331. <Term>-230, Invalid statement name %s in line %d.</Term>
  332. <ListItem>
  333. <Para>
  334. The statement you are trying to use has not been prepared.
  335. </Para>
  336. </ListItem>
  337. </VarListEntry>
  338. <VarListEntry>
  339. <Term>-400, Postgres error: %s line %d.</Term>
  340. <ListItem>
  341. <Para>
  342. Some <ProductName>Postgres</ProductName> error. 
  343. The message contains the error message from the
  344. <ProductName>Postgres</ProductName> backend.
  345. </Para>
  346. </ListItem>
  347. </VarListEntry>
  348. <VarListEntry>
  349. <Term>-401, Error in transaction processing line %d. </Term>
  350. <ListItem>
  351. <Para>
  352. <ProductName>Postgres</ProductName> signalled to us that we cannot start,
  353. commit or rollback the transaction.
  354. </Para>
  355. </ListItem>
  356. </VarListEntry>
  357. <VarListEntry>
  358. <Term>-402, connect: could not open database %s.</Term>
  359. <ListItem>
  360. <Para>
  361. The connect to the database did not work.
  362. </Para>
  363. </ListItem>
  364. </VarListEntry>
  365. <VarListEntry>
  366. <Term>100, Data not found line %d.</Term>
  367. <ListItem>
  368. <Para>
  369. This is a "normal" error that tells you that what you are quering cannot
  370. be found or we have gone through the cursor.
  371. </Para>
  372. </ListItem>
  373. </VarListEntry>
  374. </VariableList>
  375. </Para>
  376. </Sect2>
  377. </sect1>
  378. <Sect1>
  379. <Title>Limitations</Title>
  380. <Para>
  381. What will never be included and why or what cannot be done with this
  382. concept.
  383. <VariableList>
  384. <VarListEntry>
  385. <Term>oracles single tasking possibility</Term>
  386. <ListItem>
  387. <Para>
  388. Oracle version 7.0 on AIX 3 uses the OS-supported locks on the shared
  389. memory segments and allows the application designer to link an
  390. application in a so called single tasking way. Instead of starting one
  391. client process per application process both the database part and the
  392. application part is run in the same process. In later versions of oracle
  393. this is no longer supported.
  394. </Para>
  395. <Para>
  396. This would require a total redesign of the <ProductName>Postgres</ProductName> access model and
  397. that effort can not justify the performance gained.
  398. </Para>
  399. </ListItem>
  400. </VarListEntry>
  401. </VariableList>
  402. </Para>
  403. </sect1>
  404. <Sect1>
  405. <Title>Porting From Other <Acronym>RDBMS</Acronym> Packages</Title>
  406. <Para>
  407. The design of <Application>ecpg</Application> follows SQL standard. So
  408. porting from a standard RDBMS should not be a problem. Unfortunately there
  409. is no such thing as a standard RDBMS. So <Application>ecpg</Application>
  410. also tries to understand syntax additions as long as they do not create
  411. conflicts with the standard. 
  412. </Para>
  413. <Para>
  414. The following list shows all the known incompatibilities. If you find one
  415. not listed please notify <ULink url="mailto:meskes@postgresql.org">Michael
  416. Meskes</ULink>. Note, however, that we list only incompatibilities from
  417. a precompiler of another RDBMS to <Application>ecpg</Application> and not
  418. additional <Application>ecpg</Application> features that these RDBMS do not
  419. have.
  420. </Para>
  421. <Para>
  422. <VariableList>
  423. <VarListEntry>
  424. <Term>Syntax of FETCH command</Term>
  425. <ListItem>
  426. <Para>
  427. The standard syntax of the FETCH command is:
  428. </para>
  429. <Para>
  430. FETCH [direction] [amount] IN|FROM <Replaceable>cursor name</Replaceable>.
  431. </Para>
  432. <para>
  433. <Application>ORACLE</Application>, however, does not use the keywords IN
  434. resp. FROM. This feature cannot be added since it would create parsing
  435. conflicts.
  436. </Para>
  437. </ListItem>
  438. </VarListEntry>
  439. </VariableList>
  440. </Para>
  441. </sect1>
  442. <Sect1>
  443. <Title>Installation</Title>
  444. <Para>
  445. Since version 0.5 <Application>ecpg</Application> is distributed 
  446. together with <ProductName>Postgres</ProductName>. So you
  447. should get your precompiler, libraries and header files compiled and
  448. installed by default as a part of your installation.
  449. </Para>
  450. </sect1>
  451. <Sect1>
  452. <Title>For the Developer</Title>
  453. <Para>
  454. This section is for those who want to develop the 
  455. <Application>ecpg</Application> interface. It
  456. describes how the things work. The ambition is to make this section
  457. contain things for those that want to have a look inside and the section
  458. on How to use it should be enough for all normal questions.
  459. So, read this before looking at the internals of the 
  460. <Application>ecpg</Application>. If
  461. you are not interested in how it really works, skip this section.
  462. </Para>
  463. <Sect2>
  464. <Title>ToDo List</Title>
  465. <Para>
  466. This version the preprocessor has some flaws:
  467. <VariableList>
  468. <VarListEntry>
  469. <Term>Library functions</Term>
  470. <ListItem>
  471. <Para>
  472. to_date et al. do not exists. But then <ProductName>Postgres</ProductName>
  473. has some good conversion routines itself. So you probably won't miss these.
  474. </Para>
  475. </ListItem>
  476. </VarListEntry>
  477. <VarListEntry>
  478. <Term>Structures ans unions</Term>
  479. <ListItem>
  480. <Para>
  481. Structures and unions have to be defined in the declare section.
  482. </Para>
  483. </ListItem>
  484. </VarListEntry>
  485. <VarListEntry>
  486. <Term>Missing statements</Term>
  487. <ListItem>
  488. <Para>
  489. The following statements are not implemented thus far:
  490. <VariableList>
  491. <VarListEntry>
  492. <Term> exec sql allocate</Term>
  493. <ListItem>
  494. <Para>
  495. </Para>
  496. </listitem>
  497. </VarListEntry>
  498. <VarListEntry>
  499. <Term> exec sql deallocate</Term>
  500. <ListItem>
  501. <Para>
  502. </Para>
  503. </listitem>
  504. </VarListEntry>
  505. <VarListEntry>
  506. <Term> SQLSTATE</Term>
  507. <ListItem>
  508. <Para>
  509. </Para>
  510. </listitem>
  511. </VarListEntry>
  512. </VariableList>
  513. </Para>
  514. </ListItem>
  515. </VarListEntry>
  516. <VarListEntry>
  517. <Term>message 'no data found'</Term>
  518. <ListItem>
  519. <Para>
  520. The error message for "no data" in an exec sql insert select from statement
  521. has to be 100.
  522. </Para>
  523. </ListItem>
  524. </VarListEntry>
  525. <VarListEntry>
  526. <Term>sqlwarn[6]</Term>
  527. <ListItem>
  528. <Para>
  529. sqlwarn[6] should be 'W' if the PRECISION or SCALE value specified in a SET
  530. DESCRIPTOR statement will be ignored.
  531. </Para>
  532. </ListItem>
  533. </VarListEntry>
  534. </VariableList>
  535. </Para>
  536. </sect2>
  537. <Sect2>
  538. <Title>The Preprocessor</Title>
  539. <Para>
  540. The first four lines written to the output are constant additions by ecpg.
  541. These are two comments and two include lines necessary for the interface to the
  542. library.
  543. </Para>
  544. <Para>
  545. Then the preprocessor works in one pass only, reading the input file and
  546. writing to the output as it goes along. Normally it just echoes
  547. everything to the output without looking at it further.
  548. </Para>
  549. <Para>
  550. When it comes to an <Command>EXEC SQL</Command> statements it intervenes and
  551. changes them depending on what it is. 
  552. The <Command>EXEC SQL</Command> statement can be one of these:
  553. <VariableList>
  554. <VarListEntry>
  555. <Term>Declare sections</Term>
  556. <ListItem>
  557. <Para>
  558. Declare sections begins with
  559. <ProgramListing>
  560. exec sql begin declare section;
  561. </ProgramListing>
  562. and ends with
  563. <ProgramListing>
  564. exec sql end declare section;
  565. </ProgramListing>
  566. In the section only variable declarations are allowed. Every variable
  567. declare within this section is also entered in a list of variables
  568. indexed on their name together with the corresponding type.
  569. </Para>
  570. <Para>
  571. In particular the definition of a structure or union also has to be listed
  572. inside a declare section. Otherwise <Application>ecpg</Application> cannot
  573. handle these types since it simply does not know the definition.
  574. </Para>
  575. <Para>
  576. The declaration is echoed to the file to make the variable a normal
  577. C-variable also.
  578. </Para>
  579. <Para>
  580. The special types VARCHAR and VARCHAR2 are converted into a named struct
  581. for every variable. A declaration like:
  582. <ProgramListing>
  583. VARCHAR var[180];
  584. </ProgramListing>
  585. is converted into
  586. <ProgramListing>
  587. struct varchar_var { int len; char arr[180]; } var;
  588. </ProgramListing>
  589. </Para>
  590. </ListItem>
  591. </VarListEntry>
  592. <VarListEntry>
  593. <Term>Include statements</Term>
  594. <ListItem>
  595. <Para>
  596. An include statement looks like:
  597. <ProgramListing>
  598. exec sql include filename;
  599. </ProgramListing>
  600. Not that this is NOT the same as
  601. <ProgramListing>
  602. #include &lt;filename.h&gt;
  603. </ProgramListing>
  604. </Para>
  605. <Para>
  606. Instead the file specified is parsed by <Application>ecpg</Application>
  607. itself. So the contents of the specified file is included in the resulting C
  608. code. This way you are able to specify EXEC SQL commands in an include file.
  609. </Para>
  610. </ListItem>
  611. </VarListEntry>
  612. <VarListEntry>
  613. <Term>Connect statement</Term>
  614. <ListItem>
  615. <Para>
  616. A connect statement looks like:
  617. <ProgramListing>
  618. exec sql connect to <Replaceable>connection target</Replaceable>;
  619. </ProgramListing>
  620. It creates a connection to the specified database.
  621. </Para>
  622. <Para>
  623. The <Replaceable>connection target</Replaceable> can be specified in the
  624. following ways:
  625. <VariableList>
  626. <VarListEntry>
  627. <Term>dbname[@server][:port][as <Replaceable>connection name</Replaceable>][user <Replaceable>user name</Replaceable>]</Term>
  628. <listitem><para></para></listitem>
  629. </VarListEntry>
  630. <VarListEntry>
  631. <Term>tcp:postgresql://server[:port][/dbname][as <Replaceable>connection name</Replaceable>][user <Replaceable>user name</Replaceable>]</Term>
  632. <listitem><para></para></listitem>
  633. </VarListEntry>
  634. <VarListEntry>
  635. <Term>unix:postgresql://server[:port][/dbname][as <Replaceable>connection name</Replaceable>][user <Replaceable>user name</Replaceable>]</Term>
  636. <listitem><para></para></listitem>
  637. </VarListEntry>
  638. <VarListEntry>
  639. <Term><Replaceable>character variable</Replaceable>[as <Replaceable>connection name</Replaceable>][user <Replaceable>user name</Replaceable>]</Term>
  640. <listitem><para></para></listitem>
  641. </VarListEntry>
  642. <VarListEntry>
  643. <Term><Replaceable>character string</Replaceable>[as <Replaceable>connection name</Replaceable>][<Replaceable>user</Replaceable>]</Term>
  644. <listitem><para></para></listitem>
  645. </VarListEntry>
  646. <VarListEntry>
  647. <Term>default</Term>
  648. <listitem><para></para></listitem>
  649. </VarListEntry>
  650. <VarListEntry>
  651. <Term>user</Term>
  652. <listitem><para></para></listitem>
  653. </VarListEntry>
  654. </VariableList>
  655. </Para>
  656. <Para>
  657. There are also different ways to specify the user name:
  658. <VariableList>
  659. <VarListEntry>
  660. <Term><Replaceable>userid</Replaceable></Term>
  661. <listitem><para></para></listitem>
  662. </VarListEntry>
  663. <VarListEntry>
  664. <Term><Replaceable>userid</Replaceable>/<Replaceable>password</Replaceable></Term>
  665. <listitem><para></para></listitem>
  666. </VarListEntry>
  667. <VarListEntry>
  668. <Term><Replaceable>userid</Replaceable> identified by <Replaceable>password</Replaceable></Term>
  669. <listitem><para></para></listitem>
  670. </VarListEntry>
  671. <VarListEntry>
  672. <Term><Replaceable>userid</Replaceable> using <Replaceable>password</Replaceable></Term>
  673. <listitem><para></para></listitem>
  674. </VarListEntry>
  675. </VariableList>
  676. </Para>
  677. <Para> Finally the userid and the password. Each may be a constant text, a
  678. character variable or a chararcter string.
  679. </Para>
  680. </ListItem>
  681. </VarListEntry>
  682. <VarListEntry>
  683. <Term>Disconnect statements</Term>
  684. <ListItem>
  685. <Para>
  686. A disconnect statement looks loke:
  687. <ProgramListing>
  688. exec sql disconnect [<Replaceable>connection target</Replaceable>];
  689. </ProgramListing>
  690. It closes the connection to the specified database.
  691. </Para>
  692. <Para>
  693. The <Replaceable>connection target</Replaceable> can be specified in the
  694. following ways:
  695. <VariableList>
  696. <VarListEntry>
  697. <Term><Replaceable>connection name</Replaceable></Term>
  698. <listitem><para></para></listitem>
  699. </VarListEntry>
  700. <VarListEntry>
  701. <Term>default</Term>
  702. <listitem><para></para></listitem>
  703. </VarListEntry>
  704. <VarListEntry>
  705. <Term>current</Term>
  706. <listitem><para></para></listitem>
  707. </VarListEntry>
  708. <VarListEntry>
  709. <Term>all</Term>
  710. <listitem><para></para></listitem>
  711. </VarListEntry>
  712. </VariableList>
  713. </Para>
  714. </ListItem>
  715. </VarListEntry>
  716. <!--WARNING: FROM HERE ON THE TEXT IS OUTDATED!-->
  717. <VarListEntry>
  718. <Term>Open cursor statement</Term>
  719. <ListItem>
  720. <Para>
  721. An open cursor statement looks like:
  722. <ProgramListing>
  723. exec sql open <Replaceable>cursor</Replaceable>;
  724. </ProgramListing>
  725. and is ignore and not copied from the output.
  726. </Para>
  727. </ListItem>
  728. </VarListEntry>
  729. <VarListEntry>
  730. <Term>Commit statement</Term>
  731. <ListItem>
  732. <Para>
  733. A commit statement looks like
  734. <ProgramListing>
  735. exec sql commit;
  736. </ProgramListing>
  737. and is translated on the output to
  738. <ProgramListing>
  739. ECPGcommit(__LINE__);
  740. </ProgramListing>
  741. </Para>
  742. </ListItem>
  743. </VarListEntry>
  744. <VarListEntry>
  745. <Term>Rollback statement</Term>
  746. <ListItem>
  747. <Para>
  748. A rollback statement looks like
  749. <ProgramListing>
  750. exec sql rollback;
  751. </ProgramListing>
  752. and is translated on the output to
  753. <ProgramListing>
  754. ECPGrollback(__LINE__);
  755. </ProgramListing>
  756. </Para>
  757. </ListItem>
  758. </VarListEntry>
  759. <!--STARTING HERE IT IS OKAY AGAIN!-->
  760. <VarListEntry>
  761. <Term>Other statements</Term>
  762. <ListItem>
  763. <Para>
  764. Other <Acronym>SQL</Acronym> statements are other statements that start with 
  765. <Command>exec sql</Command> and ends with <Command>;</Command>. 
  766. Everything inbetween is treated
  767. as an <Acronym>SQL</Acronym> statement and parsed for variable substitution.
  768. </Para>
  769. <Para>
  770. Variable substitution occur when a symbol starts with a colon
  771. (<Command>:</Command>). Then a variable with that name is looked for among
  772. the variables that were previously declared within a declare section and
  773. depending on the variable being for input or output the pointers to the
  774. variables are written to the output to allow for access by the function.
  775. </Para>
  776. <Para>
  777. For every variable that is part of the <Acronym>SQL</Acronym> request 
  778. the function gets another ten arguments:
  779. <SimpleList>
  780. <Member>The type as a special symbol.</Member>
  781. <Member>A pointer to the value or a pointer to the pointer.</Member>
  782. <Member>The size of the variable if it is a char or varchar.</Member>
  783. <Member>Number of elements in the array (for array fetches).</Member>
  784. <Member>The offset to the next element in the array (for array fetches)</Member>
  785. <Member>The type of the indicator variable as a special symbol.</Member>
  786. <Member>A pointer to the value of the indicator variable or a pointer to the pointer of the indicator variable.</Member>
  787. <Member>0.</Member>
  788. <Member>Number of elements in the indicator array (for array fetches).</Member>
  789. <Member>The offset to the next element in the indicator array (for array fetches)</Member>
  790. </SimpleList>
  791. </Para>
  792. </ListItem>
  793. </VarListEntry>
  794. </VariableList>
  795. </Para>
  796. </Sect2>
  797. <Sect2>
  798. <Title>A Complete Example</Title>
  799. <Para>
  800. Here is a complete example describing the output of the preprocessor of a
  801. file foo.pgc:
  802. <ProgramListing>
  803. exec sql begin declare section;
  804. int index;
  805. int result;
  806. exec sql end declare section;
  807. ...
  808. exec sql select res into :result from mytable where index = :index;
  809. </ProgramListing>
  810. is translated into:
  811. <ProgramListing>
  812. /* Processed by ecpg (2.6.0) */
  813. /* These two include files are added by the preprocessor */
  814. #include &lt;ecpgtype.h&gt;;
  815. #include &lt;ecpglib.h&gt;;
  816. /* exec sql begin declare section */
  817. #line 1 "foo.pgc"
  818.  int index;
  819.  int result;
  820. /* exec sql end declare section */
  821. ...
  822. ECPGdo(__LINE__, NULL, "select  res  from mytable where index = ?     ",
  823. ECPGt_int,&amp;(index),1L,1L,sizeof(int),
  824.         ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT,
  825.         ECPGt_int,&amp;(result),1L,1L,sizeof(int),
  826.         ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);
  827. #line 147 "foo.pgc"
  828. </ProgramListing>
  829. (the indentation in this manual is added for readability and not
  830. something that the preprocessor can do.)
  831. </Para>
  832. </sect2>
  833. <Sect2>
  834. <Title>The Library</Title>
  835. <Para>
  836. The most important function in the library is the <Function>ECPGdo</Function>
  837. function. It takes a variable amount of arguments. Hopefully we will not run
  838. into machines with limits on the amount of variables that can be
  839. accepted by a vararg function. This could easily add up to 50 or so
  840. arguments.
  841. </Para>
  842. <Para>
  843. The arguments are:
  844. <VariableList>
  845. <VarListEntry>
  846. <Term>A line number</Term>
  847. <ListItem>
  848. <Para>
  849. This is a line number for the original line used in error messages only.
  850. </Para>
  851. </ListItem>
  852. </VarListEntry>
  853. <VarListEntry>
  854. <Term>A string</Term>
  855. <ListItem>
  856. <Para>
  857. This is the <Acronym>SQL</Acronym> request that is to be issued. 
  858. This request is modified
  859. by the input variables, i.e. the variables that where not known at
  860. compile time but are to be entered in the request. Where the variables
  861. should go the string contains <Quote>;</Quote>.
  862. </Para>
  863. </ListItem>
  864. </VarListEntry>
  865. <VarListEntry>
  866. <Term>Input variables</Term>
  867. <ListItem>
  868. <Para>
  869. As described in the section about the preprocessor every input variable
  870. gets ten arguments.
  871. </Para>
  872. </ListItem>
  873. </VarListEntry>
  874. <VarListEntry>
  875. <Term>ECPGt_EOIT</Term>
  876. <ListItem>
  877. <Para>
  878. An enum telling that there are no more input variables.
  879. </Para>
  880. </ListItem>
  881. </VarListEntry>
  882. <VarListEntry>
  883. <Term>Output variables</Term>
  884. <ListItem>
  885. <Para>
  886. As described in the section about the preprocessor every input variable
  887. gets ten arguments. These variables are filled by the function.
  888. </Para>
  889. </ListItem>
  890. </VarListEntry>
  891. <VarListEntry>
  892. <Term>ECPGt_EORT</Term>
  893. <ListItem>
  894. <Para>
  895. An enum telling that there are no more variables.
  896. </Para>
  897. </ListItem>
  898. </VarListEntry>
  899. </VariableList>
  900. </Para>
  901. <Para>
  902. All the <Acronym>SQL</Acronym> statements are performed in one transaction
  903. unless you issue a commit transaction. To get this auto-transaction going
  904. the first statement or the first after statement after a commit or rollback
  905. always begins a transaction. To disable this feature per default use the
  906. '-t' option on the commandline
  907. </Para>
  908. <Para>
  909. To be completed: entries describing the other entries.
  910. </Para>
  911. </sect2>
  912. </sect1>
  913. </Chapter>