adodb-postgres7.inc.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 John Lim (jlim#natsoft.com.my). All rights reserved.
  4. Released under both BSD license and Lesser GPL library license.
  5. Whenever there is any discrepancy between the two licenses,
  6. the BSD license will take precedence.
  7. Set tabs to 4.
  8. Postgres7 support.
  9. 28 Feb 2001: Currently indicate that we support LIMIT
  10. 01 Dec 2001: dannym added support for default values
  11. */
  12. // security - hide paths
  13. if (!defined('ADODB_DIR')) die();
  14. include_once(ADODB_DIR."/drivers/adodb-postgres64.inc.php");
  15. class ADODB_postgres7 extends ADODB_postgres64 {
  16. var $databaseType = 'postgres7';
  17. var $hasLimit = true; // set to true for pgsql 6.5+ only. support pgsql/mysql SELECT * FROM TABLE LIMIT 10
  18. var $ansiOuter = true;
  19. var $charSet = true; //set to true for Postgres 7 and above - PG client supports encodings
  20. function ADODB_postgres7()
  21. {
  22. $this->ADODB_postgres64();
  23. if (ADODB_ASSOC_CASE !== 2) {
  24. $this->rsPrefix .= 'assoc_';
  25. }
  26. }
  27. // the following should be compat with postgresql 7.2,
  28. // which makes obsolete the LIMIT limit,offset syntax
  29. function &SelectLimit($sql,$nrows=-1,$offset=-1,$inputarr=false,$secs2cache=0)
  30. {
  31. $offsetStr = ($offset >= 0) ? " OFFSET $offset" : '';
  32. $limitStr = ($nrows >= 0) ? " LIMIT $nrows" : '';
  33. if ($secs2cache)
  34. $rs =& $this->CacheExecute($secs2cache,$sql."$limitStr$offsetStr",$inputarr);
  35. else
  36. $rs =& $this->Execute($sql."$limitStr$offsetStr",$inputarr);
  37. return $rs;
  38. }
  39. /*
  40. function Prepare($sql)
  41. {
  42. $info = $this->ServerInfo();
  43. if ($info['version']>=7.3) {
  44. return array($sql,false);
  45. }
  46. return $sql;
  47. }
  48. */
  49. // from Edward Jaramilla, improved version - works on pg 7.4
  50. function MetaForeignKeys($table, $owner=false, $upper=false)
  51. {
  52. $sql = 'SELECT t.tgargs as args
  53. FROM
  54. pg_trigger t,pg_class c,pg_proc p
  55. WHERE
  56. t.tgenabled AND
  57. t.tgrelid = c.oid AND
  58. t.tgfoid = p.oid AND
  59. p.proname = \'RI_FKey_check_ins\' AND
  60. c.relname = \''.strtolower($table).'\'
  61. ORDER BY
  62. t.tgrelid';
  63. $rs = $this->Execute($sql);
  64. if ($rs && !$rs->EOF) {
  65. $arr =& $rs->GetArray();
  66. $a = array();
  67. foreach($arr as $v)
  68. {
  69. $data = explode(chr(0), $v['args']);
  70. if ($upper) {
  71. $a[strtoupper($data[2])][] = strtoupper($data[4].'='.$data[5]);
  72. } else {
  73. $a[$data[2]][] = $data[4].'='.$data[5];
  74. }
  75. }
  76. return $a;
  77. }
  78. return false;
  79. }
  80. // this is a set of functions for managing client encoding - very important if the encodings
  81. // of your database and your output target (i.e. HTML) don't match
  82. //for instance, you may have UNICODE database and server it on-site as WIN1251 etc.
  83. // GetCharSet - get the name of the character set the client is using now
  84. // the functions should work with Postgres 7.0 and above, the set of charsets supported
  85. // depends on compile flags of postgres distribution - if no charsets were compiled into the server
  86. // it will return 'SQL_ANSI' always
  87. function GetCharSet()
  88. {
  89. //we will use ADO's builtin property charSet
  90. $this->charSet = @pg_client_encoding($this->_connectionID);
  91. if (!$this->charSet) {
  92. return false;
  93. } else {
  94. return $this->charSet;
  95. }
  96. }
  97. // SetCharSet - switch the client encoding
  98. function SetCharSet($charset_name)
  99. {
  100. $this->GetCharSet();
  101. if ($this->charSet !== $charset_name) {
  102. $if = pg_set_client_encoding($this->_connectionID, $charset_name);
  103. if ($if == "0" & $this->GetCharSet() == $charset_name) {
  104. return true;
  105. } else return false;
  106. } else return true;
  107. }
  108. }
  109. /*--------------------------------------------------------------------------------------
  110. Class Name: Recordset
  111. --------------------------------------------------------------------------------------*/
  112. class ADORecordSet_postgres7 extends ADORecordSet_postgres64{
  113. var $databaseType = "postgres7";
  114. function ADORecordSet_postgres7($queryID,$mode=false)
  115. {
  116. $this->ADORecordSet_postgres64($queryID,$mode);
  117. }
  118. // 10% speedup to move MoveNext to child class
  119. function MoveNext()
  120. {
  121. if (!$this->EOF) {
  122. $this->_currentRow++;
  123. if ($this->_numOfRows < 0 || $this->_numOfRows > $this->_currentRow) {
  124. $this->fields = @pg_fetch_array($this->_queryID,$this->_currentRow,$this->fetchMode);
  125. if (is_array($this->fields)) {
  126. if ($this->fields && isset($this->_blobArr)) $this->_fixblobs();
  127. return true;
  128. }
  129. }
  130. $this->fields = false;
  131. $this->EOF = true;
  132. }
  133. return false;
  134. }
  135. }
  136. class ADORecordSet_assoc_postgres7 extends ADORecordSet_postgres64{
  137. var $databaseType = "postgres7";
  138. function ADORecordSet_assoc_postgres7($queryID,$mode=false)
  139. {
  140. $this->ADORecordSet_postgres64($queryID,$mode);
  141. }
  142. function _fetch()
  143. {
  144. if ($this->_currentRow >= $this->_numOfRows && $this->_numOfRows >= 0)
  145. return false;
  146. $this->fields = @pg_fetch_array($this->_queryID,$this->_currentRow,$this->fetchMode);
  147. if ($this->fields) {
  148. if (isset($this->_blobArr)) $this->_fixblobs();
  149. $this->_updatefields();
  150. }
  151. return (is_array($this->fields));
  152. }
  153. // Create associative array
  154. function _updatefields()
  155. {
  156. if (ADODB_ASSOC_CASE == 2) return; // native
  157. $arr = array();
  158. $lowercase = (ADODB_ASSOC_CASE == 0);
  159. foreach($this->fields as $k => $v) {
  160. if (is_integer($k)) $arr[$k] = $v;
  161. else {
  162. if ($lowercase)
  163. $arr[strtolower($k)] = $v;
  164. else
  165. $arr[strtoupper($k)] = $v;
  166. }
  167. }
  168. $this->fields = $arr;
  169. }
  170. function MoveNext()
  171. {
  172. if (!$this->EOF) {
  173. $this->_currentRow++;
  174. if ($this->_numOfRows < 0 || $this->_numOfRows > $this->_currentRow) {
  175. $this->fields = @pg_fetch_array($this->_queryID,$this->_currentRow,$this->fetchMode);
  176. if (is_array($this->fields)) {
  177. if ($this->fields) {
  178. if (isset($this->_blobArr)) $this->_fixblobs();
  179. $this->_updatefields();
  180. }
  181. return true;
  182. }
  183. }
  184. $this->fields = false;
  185. $this->EOF = true;
  186. }
  187. return false;
  188. }
  189. }
  190. ?>