Heim php教程 PHP开发 Einführungs-Tutorial zum Zend Framework: Detaillierte Erläuterung des Datenbankbetriebs von Zend_Db

Einführungs-Tutorial zum Zend Framework: Detaillierte Erläuterung des Datenbankbetriebs von Zend_Db

Dec 26, 2016 pm 03:17 PM
framework zend 入门教程 数据库

本文实例讲述了Zend Framework中Zend_Db数据库操作方法。分享给大家供大家参考,具体如下:

引言:Zend操作数据库通过Zend_Db_Adapter

它可以连接多种数据库,可以是DB2数据库、MySQli数据库、Oracle数据库。等等。

只需要配置相应的参数就可以了。

下面通过案例来展示一下其连接数据库的过程。

连接mysql数据库

代码:

1

2

3

4

5

6

7

8

<?php

require_once 'Zend/Db.php';

$params = array('host'=>'127.0.0.1',

  'username'=>'root',

  'password'=>'',

  'dbname'=>'test'

  );

$db = Zend_Db::factory('PDO_Mysql',$params);

Nach dem Login kopieren

点评:

这是连接mysql的代码案例,提供相应的参数就可以了。连接不同的数据库,提供不同的参数。下面是sqlite的例子

代码:

1

2

3

4

<?php

require_once 'Zend/Db.php';

$params = array('dbname'=>'test.mdb');

$db = Zend_Db::factory('PDO_Sqlite',$params);

Nach dem Login kopieren

点评:

sqlite明显参数不一样了,只需要提供数据库名字就可以了。
连接完数据库之后,就可以查询数据库信息以及操作数据库信息了。
如果查询呢?

下面是查询的代码案例:

1

2

3

4

5

6

7

8

9

10

11

12

<?php

require_once 'Zend/Db.php';

$params = array('host'=>'127.0.0.1',

  'username'=>'root',

  'password'=>'',

  'dbname'=>'test'

  );

$db = Zend_Db::factory('PDO_Mysql',$params);

$sql = $db->quoteInto('SELECT * FROM user WHERE id<?','5');

$result = $db->query($sql);  //执行SQL查询

$r_a = $result->fetchAll(); //返回结果数组

print_r($r_a);

Nach dem Login kopieren

点评:

执行完上述代码,就会展示出数据库中前五条记录的信息。

那么这其中的玄机是什么呢?

我们来看一下源码。

我们来看看Db.php中的factory方法

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

public static function factory($adapter, $config = array())

{

    if ($config instanceof Zend_Config) {

      $config = $config-&gt;toArray();

    }

    /*

     * Convert Zend_Config argument to plain string

     * adapter name and separate config object.

     */

    if ($adapter instanceof Zend_Config) {

      if (isset($adapter-&gt;params)) {

        $config = $adapter-&gt;params-&gt;toArray();

      }

      if (isset($adapter-&gt;adapter)) {

        $adapter = (string) $adapter-&gt;adapter;

      } else {

        $adapter = null;

      }

    }

    /*

     * Verify that adapter parameters are in an array.

     */

    if (!is_array($config)) {

      /**

       * @see Zend_Db_Exception

       */

      require_once &#39;Zend/Db/Exception.php&#39;;

      throw new Zend_Db_Exception(&#39;Adapter parameters must be in an array or a Zend_Config object&#39;);

    }

    /*

     * Verify that an adapter name has been specified.

     */

    if (!is_string($adapter) || empty($adapter)) {

      /**

       * @see Zend_Db_Exception

       */

      require_once &#39;Zend/Db/Exception.php&#39;;

      throw new Zend_Db_Exception(&#39;Adapter name must be specified in a string&#39;);

    }

    /*

     * Form full adapter class name

     */

    $adapterNamespace = &#39;Zend_Db_Adapter&#39;;

    if (isset($config[&#39;adapterNamespace&#39;])) {

      if ($config[&#39;adapterNamespace&#39;] != &#39;&#39;) {

        $adapterNamespace = $config[&#39;adapterNamespace&#39;];

      }

      unset($config[&#39;adapterNamespace&#39;]);

    }

    // Adapter no longer normalized- see http://framework.zend.com/issues/browse/ZF-5606

    $adapterName = $adapterNamespace . &#39;_&#39;;

    $adapterName .= str_replace(&#39; &#39;, &#39;_&#39;, ucwords(str_replace(&#39;_&#39;, &#39; &#39;, strtolower($adapter))));

    print_r($adapterName);exit;

    /*

     * Load the adapter class. This throws an exception

     * if the specified class cannot be loaded.

     */

    if (!class_exists($adapterName)) {

      require_once &#39;Zend/Loader.php&#39;;

      Zend_Loader::loadClass($adapterName);

    }

    /*

     * Create an instance of the adapter class.

     * Pass the config to the adapter class constructor.

     */

    $dbAdapter = new $adapterName($config);

    /*

     * Verify that the object created is a descendent of the abstract adapter type.

     */

    if (! $dbAdapter instanceof Zend_Db_Adapter_Abstract) {

      /**

       * @see Zend_Db_Exception

       */

      require_once &#39;Zend/Db/Exception.php&#39;;

      throw new Zend_Db_Exception(&quot;Adapter class &#39;$adapterName&#39; does not extend Zend_Db_Adapter_Abstract&quot;);

    }

    return $dbAdapter;

}

Nach dem Login kopieren

点评:这个方法就是核心了,代码量不多,但是作用很明确,它会通过你提供的两个参数,自动生成相应的数据库连接类的对象。具有一定的灵活性,机动性。

主要是其中的

1

2

3

4

5

6

7

8

9

10

$adapterName = $adapterNamespace . &#39;_&#39;;

$adapterName .= str_replace(&#39; &#39;, &#39;_&#39;, ucwords(str_replace(&#39;_&#39;, &#39; &#39;, strtolower($adapter))));

/*

 * Load the adapter class. This throws an exception

 * if the specified class cannot be loaded.

 */

if (!class_exists($adapterName)) {

      require_once &#39;Zend/Loader.php&#39;;

      Zend_Loader::loadClass($adapterName);

}

Nach dem Login kopieren

这段代码会引入相应的数据库连接类,比如前面的两个例子,就是分别引入了Zend目录下Db目录下Adapter目录下Pdo目录下的mysql.php类。

不同的数据库,会引入不同的数据库文件。

我们来看看mysql.php类中的内容:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

&lt;?php

/**

 * Zend Framework

 *

 * LICENSE

 *

 * This source file is subject to the new BSD license that is bundled

 * with this package in the file LICENSE.txt.

 * It is also available through the world-wide-web at this URL:

 * http://framework.zend.com/license/new-bsd

 * If you did not receive a copy of the license and are unable to

 * obtain it through the world-wide-web, please send an email

 * to license@zend.com so we can send you a copy immediately.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 * @version  $Id: Mysql.php 24593 2012-01-05 20:35:02Z matthew $

 */

/**

 * @see Zend_Db_Adapter_Pdo_Abstract

 */

require_once &#39;Zend/Db/Adapter/Pdo/Abstract.php&#39;;

/**

 * Class for connecting to MySQL databases and performing common operations.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 */

class Zend_Db_Adapter_Pdo_Mysql extends Zend_Db_Adapter_Pdo_Abstract

{

  /**

   * PDO type.

   *

   * @var string

   */

  protected $_pdoType = &#39;mysql&#39;;

  /**

   * Keys are UPPERCASE SQL datatypes or the constants

   * Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE, or Zend_Db::FLOAT_TYPE.

   *

   * Values are:

   * 0 = 32-bit integer

   * 1 = 64-bit integer

   * 2 = float or decimal

   *

   * @var array Associative array of datatypes to values 0, 1, or 2.

   */

  protected $_numericDataTypes = array(

    Zend_Db::INT_TYPE  =&gt; Zend_Db::INT_TYPE,

    Zend_Db::BIGINT_TYPE =&gt; Zend_Db::BIGINT_TYPE,

    Zend_Db::FLOAT_TYPE =&gt; Zend_Db::FLOAT_TYPE,

    &#39;INT&#39;        =&gt; Zend_Db::INT_TYPE,

    &#39;INTEGER&#39;      =&gt; Zend_Db::INT_TYPE,

    &#39;MEDIUMINT&#39;     =&gt; Zend_Db::INT_TYPE,

    &#39;SMALLINT&#39;      =&gt; Zend_Db::INT_TYPE,

    &#39;TINYINT&#39;      =&gt; Zend_Db::INT_TYPE,

    &#39;BIGINT&#39;       =&gt; Zend_Db::BIGINT_TYPE,

    &#39;SERIAL&#39;       =&gt; Zend_Db::BIGINT_TYPE,

    &#39;DEC&#39;        =&gt; Zend_Db::FLOAT_TYPE,

    &#39;DECIMAL&#39;      =&gt; Zend_Db::FLOAT_TYPE,

    &#39;DOUBLE&#39;       =&gt; Zend_Db::FLOAT_TYPE,

    &#39;DOUBLE PRECISION&#39;  =&gt; Zend_Db::FLOAT_TYPE,

    &#39;FIXED&#39;       =&gt; Zend_Db::FLOAT_TYPE,

    &#39;FLOAT&#39;       =&gt; Zend_Db::FLOAT_TYPE

  );

  /**

   * Override _dsn() and ensure that charset is incorporated in mysql

   * @see Zend_Db_Adapter_Pdo_Abstract::_dsn()

   */

  protected function _dsn()

  {

    $dsn = parent::_dsn();

    if (isset($this-&gt;_config[&#39;charset&#39;])) {

      $dsn .= &#39;;charset=&#39; . $this-&gt;_config[&#39;charset&#39;];

    }

    return $dsn;

  }

  /**

   * Creates a PDO object and connects to the database.

   *

   * @return void

   * @throws Zend_Db_Adapter_Exception

   */

  protected function _connect()

  {

    if ($this-&gt;_connection) {

      return;

    }

    if (!empty($this-&gt;_config[&#39;charset&#39;])) {

      $initCommand = &quot;SET NAMES &#39;&quot; . $this-&gt;_config[&#39;charset&#39;] . &quot;&#39;&quot;;

      $this-&gt;_config[&#39;driver_options&#39;][1002] = $initCommand; // 1002 = PDO::MYSQL_ATTR_INIT_COMMAND

    }

    parent::_connect();

  }

  /**

   * @return string

   */

  public function getQuoteIdentifierSymbol()

  {

    return &quot;`&quot;;

  }

  /**

   * Returns a list of the tables in the database.

   *

   * @return array

   */

  public function listTables()

  {

    return $this-&gt;fetchCol(&#39;SHOW TABLES&#39;);

  }

  /**

   * Returns the column descriptions for a table.

   *

   * The return value is an associative array keyed by the column name,

   * as returned by the RDBMS.

   *

   * The value of each array element is an associative array

   * with the following keys:

   *

   * SCHEMA_NAME   =&gt; string; name of database or schema

   * TABLE_NAME    =&gt; string;

   * COLUMN_NAME   =&gt; string; column name

   * COLUMN_POSITION =&gt; number; ordinal position of column in table

   * DATA_TYPE    =&gt; string; SQL datatype name of column

   * DEFAULT     =&gt; string; default expression of column, null if none

   * NULLABLE     =&gt; boolean; true if column can have nulls

   * LENGTH      =&gt; number; length of CHAR/VARCHAR

   * SCALE      =&gt; number; scale of NUMERIC/DECIMAL

   * PRECISION    =&gt; number; precision of NUMERIC/DECIMAL

   * UNSIGNED     =&gt; boolean; unsigned property of an integer type

   * PRIMARY     =&gt; boolean; true if column is part of the primary key

   * PRIMARY_POSITION =&gt; integer; position of column in primary key

   * IDENTITY     =&gt; integer; true if column is auto-generated with unique values

   *

   * @param string $tableName

   * @param string $schemaName OPTIONAL

   * @return array

   */

  public function describeTable($tableName, $schemaName = null)

  {

    // @todo use INFORMATION_SCHEMA someday when MySQL&#39;s

    // implementation has reasonably good performance and

    // the version with this improvement is in wide use.

    if ($schemaName) {

      $sql = &#39;DESCRIBE &#39; . $this-&gt;quoteIdentifier(&quot;$schemaName.$tableName&quot;, true);

    } else {

      $sql = &#39;DESCRIBE &#39; . $this-&gt;quoteIdentifier($tableName, true);

    }

    $stmt = $this-&gt;query($sql);

    // Use FETCH_NUM so we are not dependent on the CASE attribute of the PDO connection

    $result = $stmt-&gt;fetchAll(Zend_Db::FETCH_NUM);

    $field  = 0;

    $type  = 1;

    $null  = 2;

    $key   = 3;

    $default = 4;

    $extra  = 5;

    $desc = array();

    $i = 1;

    $p = 1;

    foreach ($result as $row) {

      list($length, $scale, $precision, $unsigned, $primary, $primaryPosition, $identity)

        = array(null, null, null, null, false, null, false);

      if (preg_match(&#39;/unsigned/&#39;, $row[$type])) {

        $unsigned = true;

      }

      if (preg_match(&#39;/^((?:var)?char)\((\d+)\)/&#39;, $row[$type], $matches)) {

        $row[$type] = $matches[1];

        $length = $matches[2];

      } else if (preg_match(&#39;/^decimal\((\d+),(\d+)\)/&#39;, $row[$type], $matches)) {

        $row[$type] = &#39;decimal&#39;;

        $precision = $matches[1];

        $scale = $matches[2];

      } else if (preg_match(&#39;/^float\((\d+),(\d+)\)/&#39;, $row[$type], $matches)) {

        $row[$type] = &#39;float&#39;;

        $precision = $matches[1];

        $scale = $matches[2];

      } else if (preg_match(&#39;/^((?:big|medium|small|tiny)?int)\((\d+)\)/&#39;, $row[$type], $matches)) {

        $row[$type] = $matches[1];

        // The optional argument of a MySQL int type is not precision

        // or length; it is only a hint for display width.

      }

      if (strtoupper($row[$key]) == &#39;PRI&#39;) {

        $primary = true;

        $primaryPosition = $p;

        if ($row[$extra] == &#39;auto_increment&#39;) {

          $identity = true;

        } else {

          $identity = false;

        }

        ++$p;

      }

      $desc[$this-&gt;foldCase($row[$field])] = array(

        &#39;SCHEMA_NAME&#39;   =&gt; null, // @todo

        &#39;TABLE_NAME&#39;    =&gt; $this-&gt;foldCase($tableName),

        &#39;COLUMN_NAME&#39;   =&gt; $this-&gt;foldCase($row[$field]),

        &#39;COLUMN_POSITION&#39; =&gt; $i,

        &#39;DATA_TYPE&#39;    =&gt; $row[$type],

        &#39;DEFAULT&#39;     =&gt; $row[$default],

        &#39;NULLABLE&#39;     =&gt; (bool) ($row[$null] == &#39;YES&#39;),

        &#39;LENGTH&#39;      =&gt; $length,

        &#39;SCALE&#39;      =&gt; $scale,

        &#39;PRECISION&#39;    =&gt; $precision,

        &#39;UNSIGNED&#39;     =&gt; $unsigned,

        &#39;PRIMARY&#39;     =&gt; $primary,

        &#39;PRIMARY_POSITION&#39; =&gt; $primaryPosition,

        &#39;IDENTITY&#39;     =&gt; $identity

      );

      ++$i;

    }

    return $desc;

  }

  /**

   * Adds an adapter-specific LIMIT clause to the SELECT statement.

   *

   * @param string $sql

   * @param integer $count

   * @param integer $offset OPTIONAL

   * @throws Zend_Db_Adapter_Exception

   * @return string

   */

   public function limit($sql, $count, $offset = 0)

   {

    $count = intval($count);

    if ($count &lt;= 0) {

      /** @see Zend_Db_Adapter_Exception */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&quot;LIMIT argument count=$count is not valid&quot;);

    }

    $offset = intval($offset);

    if ($offset &lt; 0) {

      /** @see Zend_Db_Adapter_Exception */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&quot;LIMIT argument offset=$offset is not valid&quot;);

    }

    $sql .= &quot; LIMIT $count&quot;;

    if ($offset &gt; 0) {

      $sql .= &quot; OFFSET $offset&quot;;

    }

    return $sql;

  }

}

Nach dem Login kopieren

这里又引入了一个Abstract类,抽象类

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

&lt;?php

/**

 * Zend Framework

 *

 * LICENSE

 *

 * This source file is subject to the new BSD license that is bundled

 * with this package in the file LICENSE.txt.

 * It is also available through the world-wide-web at this URL:

 * http://framework.zend.com/license/new-bsd

 * If you did not receive a copy of the license and are unable to

 * obtain it through the world-wide-web, please send an email

 * to license@zend.com so we can send you a copy immediately.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 * @version  $Id: Abstract.php 24593 2012-01-05 20:35:02Z matthew $

 */

/**

 * @see Zend_Db_Adapter_Abstract

 */

require_once &#39;Zend/Db/Adapter/Abstract.php&#39;;

/**

 * @see Zend_Db_Statement_Pdo

 */

require_once &#39;Zend/Db/Statement/Pdo.php&#39;;

/**

 * Class for connecting to SQL databases and performing common operations using PDO.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 */

abstract class Zend_Db_Adapter_Pdo_Abstract extends Zend_Db_Adapter_Abstract

{

  /**

   * Default class name for a DB statement.

   *

   * @var string

   */

  protected $_defaultStmtClass = &#39;Zend_Db_Statement_Pdo&#39;;

  /**

   * Creates a PDO DSN for the adapter from $this-&gt;_config settings.

   *

   * @return string

   */

  protected function _dsn()

  {

    // baseline of DSN parts

    $dsn = $this-&gt;_config;

    // don&#39;t pass the username, password, charset, persistent and driver_options in the DSN

    unset($dsn[&#39;username&#39;]);

    unset($dsn[&#39;password&#39;]);

    unset($dsn[&#39;options&#39;]);

    unset($dsn[&#39;charset&#39;]);

    unset($dsn[&#39;persistent&#39;]);

    unset($dsn[&#39;driver_options&#39;]);

    // use all remaining parts in the DSN

    foreach ($dsn as $key =&gt; $val) {

      $dsn[$key] = &quot;$key=$val&quot;;

    }

    return $this-&gt;_pdoType . &#39;:&#39; . implode(&#39;;&#39;, $dsn);

  }

  /**

   * Creates a PDO object and connects to the database.

   *

   * @return void

   * @throws Zend_Db_Adapter_Exception

   */

  protected function _connect()

  {

    // if we already have a PDO object, no need to re-connect.

    if ($this-&gt;_connection) {

      return;

    }

    // get the dsn first, because some adapters alter the $_pdoType

    $dsn = $this-&gt;_dsn();

    // check for PDO extension

    if (!extension_loaded(&#39;pdo&#39;)) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&#39;The PDO extension is required for this adapter but the extension is not loaded&#39;);

    }

    // check the PDO driver is available

    if (!in_array($this-&gt;_pdoType, PDO::getAvailableDrivers())) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&#39;The &#39; . $this-&gt;_pdoType . &#39; driver is not currently installed&#39;);

    }

    // create PDO connection

    $q = $this-&gt;_profiler-&gt;queryStart(&#39;connect&#39;, Zend_Db_Profiler::CONNECT);

    // add the persistence flag if we find it in our config array

    if (isset($this-&gt;_config[&#39;persistent&#39;]) &amp;&amp; ($this-&gt;_config[&#39;persistent&#39;] == true)) {

      $this-&gt;_config[&#39;driver_options&#39;][PDO::ATTR_PERSISTENT] = true;

    }

    try {

      $this-&gt;_connection = new PDO(

        $dsn,

        $this-&gt;_config[&#39;username&#39;],

        $this-&gt;_config[&#39;password&#39;],

        $this-&gt;_config[&#39;driver_options&#39;]

      );

      $this-&gt;_profiler-&gt;queryEnd($q);

      // set the PDO connection to perform case-folding on array keys, or not

      $this-&gt;_connection-&gt;setAttribute(PDO::ATTR_CASE, $this-&gt;_caseFolding);

      // always use exceptions.

      $this-&gt;_connection-&gt;setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

    } catch (PDOException $e) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception($e-&gt;getMessage(), $e-&gt;getCode(), $e);

    }

  }

  /**

   * Test if a connection is active

   *

   * @return boolean

   */

  public function isConnected()

  {

    return ((bool) ($this-&gt;_connection instanceof PDO));

  }

  /**

   * Force the connection to close.

   *

   * @return void

   */

  public function closeConnection()

  {

    $this-&gt;_connection = null;

  }

  /**

   * Prepares an SQL statement.

   *

   * @param string $sql The SQL statement with placeholders.

   * @param array $bind An array of data to bind to the placeholders.

   * @return PDOStatement

   */

  public function prepare($sql)

  {

    $this-&gt;_connect();

    $stmtClass = $this-&gt;_defaultStmtClass;

    if (!class_exists($stmtClass)) {

      require_once &#39;Zend/Loader.php&#39;;

      Zend_Loader::loadClass($stmtClass);

    }

    $stmt = new $stmtClass($this, $sql);

    $stmt-&gt;setFetchMode($this-&gt;_fetchMode);

    return $stmt;

  }

  /**

   * Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column.

   *

   * As a convention, on RDBMS brands that support sequences

   * (e.g. Oracle, PostgreSQL, DB2), this method forms the name of a sequence

   * from the arguments and returns the last id generated by that sequence.

   * On RDBMS brands that support IDENTITY/AUTOINCREMENT columns, this method

   * returns the last value generated for such a column, and the table name

   * argument is disregarded.

   *

   * On RDBMS brands that don&#39;t support sequences, $tableName and $primaryKey

   * are ignored.

   *

   * @param string $tableName  OPTIONAL Name of table.

   * @param string $primaryKey OPTIONAL Name of primary key column.

   * @return string

   */

  public function lastInsertId($tableName = null, $primaryKey = null)

  {

    $this-&gt;_connect();

    return $this-&gt;_connection-&gt;lastInsertId();

  }

  /**

   * Special handling for PDO query().

   * All bind parameter names must begin with &#39;:&#39;

   *

   * @param string|Zend_Db_Select $sql The SQL statement with placeholders.

   * @param array $bind An array of data to bind to the placeholders.

   * @return Zend_Db_Statement_Pdo

   * @throws Zend_Db_Adapter_Exception To re-throw PDOException.

   */

  public function query($sql, $bind = array())

  {

    if (empty($bind) &amp;&amp; $sql instanceof Zend_Db_Select) {

      $bind = $sql-&gt;getBind();

    }

    if (is_array($bind)) {

      foreach ($bind as $name =&gt; $value) {

        if (!is_int($name) &amp;&amp; !preg_match(&#39;/^:/&#39;, $name)) {

          $newName = &quot;:$name&quot;;

          unset($bind[$name]);

          $bind[$newName] = $value;

        }

      }

    }

    try {

      return parent::query($sql, $bind);

    } catch (PDOException $e) {

      /**

       * @see Zend_Db_Statement_Exception

       */

      require_once &#39;Zend/Db/Statement/Exception.php&#39;;

      throw new Zend_Db_Statement_Exception($e-&gt;getMessage(), $e-&gt;getCode(), $e);

    }

  }

  /**

   * Executes an SQL statement and return the number of affected rows

   *

   * @param mixed $sql The SQL statement with placeholders.

   *           May be a string or Zend_Db_Select.

   * @return integer   Number of rows that were modified

   *           or deleted by the SQL statement

   */

  public function exec($sql)

  {

    if ($sql instanceof Zend_Db_Select) {

      $sql = $sql-&gt;assemble();

    }

    try {

      $affected = $this-&gt;getConnection()-&gt;exec($sql);

      if ($affected === false) {

        $errorInfo = $this-&gt;getConnection()-&gt;errorInfo();

        /**

         * @see Zend_Db_Adapter_Exception

         */

        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

        throw new Zend_Db_Adapter_Exception($errorInfo[2]);

      }

      return $affected;

    } catch (PDOException $e) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception($e-&gt;getMessage(), $e-&gt;getCode(), $e);

    }

  }

  /**

   * Quote a raw string.

   *

   * @param string $value   Raw string

   * @return string      Quoted string

   */

  protected function _quote($value)

  {

    if (is_int($value) || is_float($value)) {

      return $value;

    }

    $this-&gt;_connect();

    return $this-&gt;_connection-&gt;quote($value);

  }

  /**

   * Begin a transaction.

   */

  protected function _beginTransaction()

  {

    $this-&gt;_connect();

    $this-&gt;_connection-&gt;beginTransaction();

  }

  /**

   * Commit a transaction.

   */

  protected function _commit()

  {

    $this-&gt;_connect();

    $this-&gt;_connection-&gt;commit();

  }

  /**

   * Roll-back a transaction.

   */

  protected function _rollBack() {

    $this-&gt;_connect();

    $this-&gt;_connection-&gt;rollBack();

  }

  /**

   * Set the PDO fetch mode.

   *

   * @todo Support FETCH_CLASS and FETCH_INTO.

   *

   * @param int $mode A PDO fetch mode.

   * @return void

   * @throws Zend_Db_Adapter_Exception

   */

  public function setFetchMode($mode)

  {

    //check for PDO extension

    if (!extension_loaded(&#39;pdo&#39;)) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&#39;The PDO extension is required for this adapter but the extension is not loaded&#39;);

    }

    switch ($mode) {

      case PDO::FETCH_LAZY:

      case PDO::FETCH_ASSOC:

      case PDO::FETCH_NUM:

      case PDO::FETCH_BOTH:

      case PDO::FETCH_NAMED:

      case PDO::FETCH_OBJ:

        $this-&gt;_fetchMode = $mode;

        break;

      default:

        /**

         * @see Zend_Db_Adapter_Exception

         */

        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

        throw new Zend_Db_Adapter_Exception(&quot;Invalid fetch mode &#39;$mode&#39; specified&quot;);

        break;

    }

  }

  /**

   * Check if the adapter supports real SQL parameters.

   *

   * @param string $type &#39;positional&#39; or &#39;named&#39;

   * @return bool

   */

  public function supportsParameters($type)

  {

    switch ($type) {

      case &#39;positional&#39;:

      case &#39;named&#39;:

      default:

        return true;

    }

  }

  /**

   * Retrieve server version in PHP style

   *

   * @return string

   */

  public function getServerVersion()

  {

    $this-&gt;_connect();

    try {

      $version = $this-&gt;_connection-&gt;getAttribute(PDO::ATTR_SERVER_VERSION);

    } catch (PDOException $e) {

      // In case of the driver doesn&#39;t support getting attributes

      return null;

    }

    $matches = null;

    if (preg_match(&#39;/((?:[0-9]{1,2}\.){1,3}[0-9]{1,2})/&#39;, $version, $matches)) {

      return $matches[1];

    } else {

      return null;

    }

  }

}

Nach dem Login kopieren

这个抽象类中又有另一个核心的抽象类。一些核心的方法都在这里

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

&lt;?php

/**

 * Zend Framework

 *

 * LICENSE

 *

 * This source file is subject to the new BSD license that is bundled

 * with this package in the file LICENSE.txt.

 * It is also available through the world-wide-web at this URL:

 * http://framework.zend.com/license/new-bsd

 * If you did not receive a copy of the license and are unable to

 * obtain it through the world-wide-web, please send an email

 * to license@zend.com so we can send you a copy immediately.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 * @version  $Id: Abstract.php 25229 2013-01-18 08:17:21Z frosch $

 */

/**

 * @see Zend_Db

 */

require_once &#39;Zend/Db.php&#39;;

/**

 * @see Zend_Db_Select

 */

require_once &#39;Zend/Db/Select.php&#39;;

/**

 * Class for connecting to SQL databases and performing common operations.

 *

 * @category  Zend

 * @package  Zend_Db

 * @subpackage Adapter

 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)

 * @license  http://framework.zend.com/license/new-bsd   New BSD License

 */

abstract class Zend_Db_Adapter_Abstract

{

  /**

   * User-provided configuration

   *

   * @var array

   */

  protected $_config = array();

  /**

   * Fetch mode

   *

   * @var integer

   */

  protected $_fetchMode = Zend_Db::FETCH_ASSOC;

  /**

   * Query profiler object, of type Zend_Db_Profiler

   * or a subclass of that.

   *

   * @var Zend_Db_Profiler

   */

  protected $_profiler;

  /**

   * Default class name for a DB statement.

   *

   * @var string

   */

  protected $_defaultStmtClass = &#39;Zend_Db_Statement&#39;;

  /**

   * Default class name for the profiler object.

   *

   * @var string

   */

  protected $_defaultProfilerClass = &#39;Zend_Db_Profiler&#39;;

  /**

   * Database connection

   *

   * @var object|resource|null

   */

  protected $_connection = null;

  /**

   * Specifies the case of column names retrieved in queries

   * Options

   * Zend_Db::CASE_NATURAL (default)

   * Zend_Db::CASE_LOWER

   * Zend_Db::CASE_UPPER

   *

   * @var integer

   */

  protected $_caseFolding = Zend_Db::CASE_NATURAL;

  /**

   * Specifies whether the adapter automatically quotes identifiers.

   * If true, most SQL generated by Zend_Db classes applies

   * identifier quoting automatically.

   * If false, developer must quote identifiers themselves

   * by calling quoteIdentifier().

   *

   * @var bool

   */

  protected $_autoQuoteIdentifiers = true;

  /**

   * Keys are UPPERCASE SQL datatypes or the constants

   * Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE, or Zend_Db::FLOAT_TYPE.

   *

   * Values are:

   * 0 = 32-bit integer

   * 1 = 64-bit integer

   * 2 = float or decimal

   *

   * @var array Associative array of datatypes to values 0, 1, or 2.

   */

  protected $_numericDataTypes = array(

    Zend_Db::INT_TYPE  =&gt; Zend_Db::INT_TYPE,

    Zend_Db::BIGINT_TYPE =&gt; Zend_Db::BIGINT_TYPE,

    Zend_Db::FLOAT_TYPE =&gt; Zend_Db::FLOAT_TYPE

  );

  /** Weither or not that object can get serialized

   *

   * @var bool

   */

  protected $_allowSerialization = true;

  /**

   * Weither or not the database should be reconnected

   * to that adapter when waking up

   *

   * @var bool

   */

  protected $_autoReconnectOnUnserialize = false;

  /**

   * Constructor.

   *

   * $config is an array of key/value pairs or an instance of Zend_Config

   * containing configuration options. These options are common to most adapters:

   *

   * dbname     =&gt; (string) The name of the database to user

   * username    =&gt; (string) Connect to the database as this username.

   * password    =&gt; (string) Password associated with the username.

   * host      =&gt; (string) What host to connect to, defaults to localhost

   *

   * Some options are used on a case-by-case basis by adapters:

   *

   * port      =&gt; (string) The port of the database

   * persistent   =&gt; (boolean) Whether to use a persistent connection or not, defaults to false

   * protocol    =&gt; (string) The network protocol, defaults to TCPIP

   * caseFolding  =&gt; (int) style of case-alteration used for identifiers

   * socket     =&gt; (string) The socket or named pipe that should be used

   *

   * @param array|Zend_Config $config An array or instance of Zend_Config having configuration data

   * @throws Zend_Db_Adapter_Exception

   */

  public function __construct($config)

  {

    /*

     * Verify that adapter parameters are in an array.

     */

    if (!is_array($config)) {

      /*

       * Convert Zend_Config argument to a plain array.

       */

      if ($config instanceof Zend_Config) {

        $config = $config-&gt;toArray();

      } else {

        /**

         * @see Zend_Db_Adapter_Exception

         */

        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

        throw new Zend_Db_Adapter_Exception(&#39;Adapter parameters must be in an array or a Zend_Config object&#39;);

      }

    }

    $this-&gt;_checkRequiredOptions($config);

    $options = array(

      Zend_Db::CASE_FOLDING      =&gt; $this-&gt;_caseFolding,

      Zend_Db::AUTO_QUOTE_IDENTIFIERS =&gt; $this-&gt;_autoQuoteIdentifiers,

      Zend_Db::FETCH_MODE       =&gt; $this-&gt;_fetchMode,

    );

    $driverOptions = array();

    /*

     * normalize the config and merge it with the defaults

     */

    if (array_key_exists(&#39;options&#39;, $config)) {

      // can&#39;t use array_merge() because keys might be integers

      foreach ((array) $config[&#39;options&#39;] as $key =&gt; $value) {

        $options[$key] = $value;

      }

    }

    if (array_key_exists(&#39;driver_options&#39;, $config)) {

      if (!empty($config[&#39;driver_options&#39;])) {

        // can&#39;t use array_merge() because keys might be integers

        foreach ((array) $config[&#39;driver_options&#39;] as $key =&gt; $value) {

          $driverOptions[$key] = $value;

        }

      }

    }

    if (!isset($config[&#39;charset&#39;])) {

      $config[&#39;charset&#39;] = null;

    }

    if (!isset($config[&#39;persistent&#39;])) {

      $config[&#39;persistent&#39;] = false;

    }

    $this-&gt;_config = array_merge($this-&gt;_config, $config);

    $this-&gt;_config[&#39;options&#39;] = $options;

    $this-&gt;_config[&#39;driver_options&#39;] = $driverOptions;

    // obtain the case setting, if there is one

    if (array_key_exists(Zend_Db::CASE_FOLDING, $options)) {

      $case = (int) $options[Zend_Db::CASE_FOLDING];

      switch ($case) {

        case Zend_Db::CASE_LOWER:

        case Zend_Db::CASE_UPPER:

        case Zend_Db::CASE_NATURAL:

          $this-&gt;_caseFolding = $case;

          break;

        default:

          /** @see Zend_Db_Adapter_Exception */

          require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

          throw new Zend_Db_Adapter_Exception(&#39;Case must be one of the following constants: &#39;

            . &#39;Zend_Db::CASE_NATURAL, Zend_Db::CASE_LOWER, Zend_Db::CASE_UPPER&#39;);

      }

    }

    if (array_key_exists(Zend_Db::FETCH_MODE, $options)) {

      if (is_string($options[Zend_Db::FETCH_MODE])) {

        $constant = &#39;Zend_Db::FETCH_&#39; . strtoupper($options[Zend_Db::FETCH_MODE]);

        if(defined($constant)) {

          $options[Zend_Db::FETCH_MODE] = constant($constant);

        }

      }

      $this-&gt;setFetchMode((int) $options[Zend_Db::FETCH_MODE]);

    }

    // obtain quoting property if there is one

    if (array_key_exists(Zend_Db::AUTO_QUOTE_IDENTIFIERS, $options)) {

      $this-&gt;_autoQuoteIdentifiers = (bool) $options[Zend_Db::AUTO_QUOTE_IDENTIFIERS];

    }

    // obtain allow serialization property if there is one

    if (array_key_exists(Zend_Db::ALLOW_SERIALIZATION, $options)) {

      $this-&gt;_allowSerialization = (bool) $options[Zend_Db::ALLOW_SERIALIZATION];

    }

    // obtain auto reconnect on unserialize property if there is one

    if (array_key_exists(Zend_Db::AUTO_RECONNECT_ON_UNSERIALIZE, $options)) {

      $this-&gt;_autoReconnectOnUnserialize = (bool) $options[Zend_Db::AUTO_RECONNECT_ON_UNSERIALIZE];

    }

    // create a profiler object

    $profiler = false;

    if (array_key_exists(Zend_Db::PROFILER, $this-&gt;_config)) {

      $profiler = $this-&gt;_config[Zend_Db::PROFILER];

      unset($this-&gt;_config[Zend_Db::PROFILER]);

    }

    $this-&gt;setProfiler($profiler);

  }

  /**

   * Check for config options that are mandatory.

   * Throw exceptions if any are missing.

   *

   * @param array $config

   * @throws Zend_Db_Adapter_Exception

   */

  protected function _checkRequiredOptions(array $config)

  {

    // we need at least a dbname

    if (! array_key_exists(&#39;dbname&#39;, $config)) {

      /** @see Zend_Db_Adapter_Exception */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&quot;Configuration array must have a key for &#39;dbname&#39; that names the database instance&quot;);

    }

    if (! array_key_exists(&#39;password&#39;, $config)) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&quot;Configuration array must have a key for &#39;password&#39; for login credentials&quot;);

    }

    if (! array_key_exists(&#39;username&#39;, $config)) {

      /**

       * @see Zend_Db_Adapter_Exception

       */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(&quot;Configuration array must have a key for &#39;username&#39; for login credentials&quot;);

    }

  }

  /**

   * Returns the underlying database connection object or resource.

   * If not presently connected, this initiates the connection.

   *

   * @return object|resource|null

   */

  public function getConnection()

  {

    $this-&gt;_connect();

    return $this-&gt;_connection;

  }

  /**

   * Returns the configuration variables in this adapter.

   *

   * @return array

   */

  public function getConfig()

  {

    return $this-&gt;_config;

  }

  /**

   * Set the adapter&#39;s profiler object.

   *

   * The argument may be a boolean, an associative array, an instance of

   * Zend_Db_Profiler, or an instance of Zend_Config.

   *

   * A boolean argument sets the profiler to enabled if true, or disabled if

   * false. The profiler class is the adapter&#39;s default profiler class,

   * Zend_Db_Profiler.

   *

   * An instance of Zend_Db_Profiler sets the adapter&#39;s instance to that

   * object. The profiler is enabled and disabled separately.

   *

   * An associative array argument may contain any of the keys &#39;enabled&#39;,

   * &#39;class&#39;, and &#39;instance&#39;. The &#39;enabled&#39; and &#39;instance&#39; keys correspond to the

   * boolean and object types documented above. The &#39;class&#39; key is used to name a

   * class to use for a custom profiler. The class must be Zend_Db_Profiler or a

   * subclass. The class is instantiated with no constructor arguments. The &#39;class&#39;

   * option is ignored when the &#39;instance&#39; option is supplied.

   *

   * An object of type Zend_Config may contain the properties &#39;enabled&#39;, &#39;class&#39;, and

   * &#39;instance&#39;, just as if an associative array had been passed instead.

   *

   * @param Zend_Db_Profiler|Zend_Config|array|boolean $profiler

   * @return Zend_Db_Adapter_Abstract Provides a fluent interface

   * @throws Zend_Db_Profiler_Exception if the object instance or class specified

   *     is not Zend_Db_Profiler or an extension of that class.

   */

  public function setProfiler($profiler)

  {

    $enabled     = null;

    $profilerClass  = $this-&gt;_defaultProfilerClass;

    $profilerInstance = null;

    if ($profilerIsObject = is_object($profiler)) {

      if ($profiler instanceof Zend_Db_Profiler) {

        $profilerInstance = $profiler;

      } else if ($profiler instanceof Zend_Config) {

        $profiler = $profiler-&gt;toArray();

      } else {

        /**

         * @see Zend_Db_Profiler_Exception

         */

        require_once &#39;Zend/Db/Profiler/Exception.php&#39;;

        throw new Zend_Db_Profiler_Exception(&#39;Profiler argument must be an instance of either Zend_Db_Profiler&#39;

          . &#39; or Zend_Config when provided as an object&#39;);

      }

    }

    if (is_array($profiler)) {

      if (isset($profiler[&#39;enabled&#39;])) {

        $enabled = (bool) $profiler[&#39;enabled&#39;];

      }

      if (isset($profiler[&#39;class&#39;])) {

        $profilerClass = $profiler[&#39;class&#39;];

      }

      if (isset($profiler[&#39;instance&#39;])) {

        $profilerInstance = $profiler[&#39;instance&#39;];

      }

    } else if (!$profilerIsObject) {

      $enabled = (bool) $profiler;

    }

    if ($profilerInstance === null) {

      if (!class_exists($profilerClass)) {

        require_once &#39;Zend/Loader.php&#39;;

        Zend_Loader::loadClass($profilerClass);

      }

      $profilerInstance = new $profilerClass();

    }

    if (!$profilerInstance instanceof Zend_Db_Profiler) {

      /** @see Zend_Db_Profiler_Exception */

      require_once &#39;Zend/Db/Profiler/Exception.php&#39;;

      throw new Zend_Db_Profiler_Exception(&#39;Class &#39; . get_class($profilerInstance) . &#39; does not extend &#39;

        . &#39;Zend_Db_Profiler&#39;);

    }

    if (null !== $enabled) {

      $profilerInstance-&gt;setEnabled($enabled);

    }

    $this-&gt;_profiler = $profilerInstance;

    return $this;

  }

  /**

   * Returns the profiler for this adapter.

   *

   * @return Zend_Db_Profiler

   */

  public function getProfiler()

  {

    return $this-&gt;_profiler;

  }

  /**

   * Get the default statement class.

   *

   * @return string

   */

  public function getStatementClass()

  {

    return $this-&gt;_defaultStmtClass;

  }

  /**

   * Set the default statement class.

   *

   * @return Zend_Db_Adapter_Abstract Fluent interface

   */

  public function setStatementClass($class)

  {

    $this-&gt;_defaultStmtClass = $class;

    return $this;

  }

  /**

   * Prepares and executes an SQL statement with bound data.

   *

   * @param mixed $sql The SQL statement with placeholders.

   *           May be a string or Zend_Db_Select.

   * @param mixed $bind An array of data to bind to the placeholders.

   * @return Zend_Db_Statement_Interface

   */

  public function query($sql, $bind = array())

  {

    // connect to the database if needed

    $this-&gt;_connect();

    // is the $sql a Zend_Db_Select object?

    if ($sql instanceof Zend_Db_Select) {

      if (empty($bind)) {

        $bind = $sql-&gt;getBind();

      }

      $sql = $sql-&gt;assemble();

    }

    // make sure $bind to an array;

    // don&#39;t use (array) typecasting because

    // because $bind may be a Zend_Db_Expr object

    if (!is_array($bind)) {

      $bind = array($bind);

    }

    // prepare and execute the statement with profiling

    $stmt = $this-&gt;prepare($sql);

    $stmt-&gt;execute($bind);

    // return the results embedded in the prepared statement object

    $stmt-&gt;setFetchMode($this-&gt;_fetchMode);

    return $stmt;

  }

  /**

   * Leave autocommit mode and begin a transaction.

   *

   * @return Zend_Db_Adapter_Abstract

   */

  public function beginTransaction()

  {

    $this-&gt;_connect();

    $q = $this-&gt;_profiler-&gt;queryStart(&#39;begin&#39;, Zend_Db_Profiler::TRANSACTION);

    $this-&gt;_beginTransaction();

    $this-&gt;_profiler-&gt;queryEnd($q);

    return $this;

  }

  /**

   * Commit a transaction and return to autocommit mode.

   *

   * @return Zend_Db_Adapter_Abstract

   */

  public function commit()

  {

    $this-&gt;_connect();

    $q = $this-&gt;_profiler-&gt;queryStart(&#39;commit&#39;, Zend_Db_Profiler::TRANSACTION);

    $this-&gt;_commit();

    $this-&gt;_profiler-&gt;queryEnd($q);

    return $this;

  }

  /**

   * Roll back a transaction and return to autocommit mode.

   *

   * @return Zend_Db_Adapter_Abstract

   */

  public function rollBack()

  {

    $this-&gt;_connect();

    $q = $this-&gt;_profiler-&gt;queryStart(&#39;rollback&#39;, Zend_Db_Profiler::TRANSACTION);

    $this-&gt;_rollBack();

    $this-&gt;_profiler-&gt;queryEnd($q);

    return $this;

  }

  /**

   * Inserts a table row with specified data.

   *

   * @param mixed $table The table to insert data into.

   * @param array $bind Column-value pairs.

   * @return int The number of affected rows.

   * @throws Zend_Db_Adapter_Exception

   */

  public function insert($table, array $bind)

  {

    // extract and quote col names from the array keys

    $cols = array();

    $vals = array();

    $i = 0;

    foreach ($bind as $col =&gt; $val) {

      $cols[] = $this-&gt;quoteIdentifier($col, true);

      if ($val instanceof Zend_Db_Expr) {

        $vals[] = $val-&gt;__toString();

        unset($bind[$col]);

      } else {

        if ($this-&gt;supportsParameters(&#39;positional&#39;)) {

          $vals[] = &#39;?&#39;;

        } else {

          if ($this-&gt;supportsParameters(&#39;named&#39;)) {

            unset($bind[$col]);

            $bind[&#39;:col&#39;.$i] = $val;

            $vals[] = &#39;:col&#39;.$i;

            $i++;

          } else {

            /** @see Zend_Db_Adapter_Exception */

            require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

            throw new Zend_Db_Adapter_Exception(get_class($this) .&quot; doesn&#39;t support positional or named binding&quot;);

          }

        }

      }

    }

    // build the statement

    $sql = &quot;INSERT INTO &quot;

       . $this-&gt;quoteIdentifier($table, true)

       . &#39; (&#39; . implode(&#39;, &#39;, $cols) . &#39;) &#39;

       . &#39;VALUES (&#39; . implode(&#39;, &#39;, $vals) . &#39;)&#39;;

    // execute the statement and return the number of affected rows

    if ($this-&gt;supportsParameters(&#39;positional&#39;)) {

      $bind = array_values($bind);

    }

    $stmt = $this-&gt;query($sql, $bind);

    $result = $stmt-&gt;rowCount();

    return $result;

  }

  /**

   * Updates table rows with specified data based on a WHERE clause.

   *

   * @param mixed    $table The table to update.

   * @param array    $bind Column-value pairs.

   * @param mixed    $where UPDATE WHERE clause(s).

   * @return int     The number of affected rows.

   * @throws Zend_Db_Adapter_Exception

   */

  public function update($table, array $bind, $where = &#39;&#39;)

  {

    /**

     * Build &quot;col = ?&quot; pairs for the statement,

     * except for Zend_Db_Expr which is treated literally.

     */

    $set = array();

    $i = 0;

    foreach ($bind as $col =&gt; $val) {

      if ($val instanceof Zend_Db_Expr) {

        $val = $val-&gt;__toString();

        unset($bind[$col]);

      } else {

        if ($this-&gt;supportsParameters(&#39;positional&#39;)) {

          $val = &#39;?&#39;;

        } else {

          if ($this-&gt;supportsParameters(&#39;named&#39;)) {

            unset($bind[$col]);

            $bind[&#39;:col&#39;.$i] = $val;

            $val = &#39;:col&#39;.$i;

            $i++;

          } else {

            /** @see Zend_Db_Adapter_Exception */

            require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

            throw new Zend_Db_Adapter_Exception(get_class($this) .&quot; doesn&#39;t support positional or named binding&quot;);

          }

        }

      }

      $set[] = $this-&gt;quoteIdentifier($col, true) . &#39; = &#39; . $val;

    }

    $where = $this-&gt;_whereExpr($where);

    /**

     * Build the UPDATE statement

     */

    $sql = &quot;UPDATE &quot;

       . $this-&gt;quoteIdentifier($table, true)

       . &#39; SET &#39; . implode(&#39;, &#39;, $set)

       . (($where) ? &quot; WHERE $where&quot; : &#39;&#39;);

    /**

     * Execute the statement and return the number of affected rows

     */

    if ($this-&gt;supportsParameters(&#39;positional&#39;)) {

      $stmt = $this-&gt;query($sql, array_values($bind));

    } else {

      $stmt = $this-&gt;query($sql, $bind);

    }

    $result = $stmt-&gt;rowCount();

    return $result;

  }

  /**

   * Deletes table rows based on a WHERE clause.

   *

   * @param mixed    $table The table to update.

   * @param mixed    $where DELETE WHERE clause(s).

   * @return int     The number of affected rows.

   */

  public function delete($table, $where = &#39;&#39;)

  {

    $where = $this-&gt;_whereExpr($where);

    /**

     * Build the DELETE statement

     */

    $sql = &quot;DELETE FROM &quot;

       . $this-&gt;quoteIdentifier($table, true)

       . (($where) ? &quot; WHERE $where&quot; : &#39;&#39;);

    /**

     * Execute the statement and return the number of affected rows

     */

    $stmt = $this-&gt;query($sql);

    $result = $stmt-&gt;rowCount();

    return $result;

  }

  /**

   * Convert an array, string, or Zend_Db_Expr object

   * into a string to put in a WHERE clause.

   *

   * @param mixed $where

   * @return string

   */

  protected function _whereExpr($where)

  {

    if (empty($where)) {

      return $where;

    }

    if (!is_array($where)) {

      $where = array($where);

    }

    foreach ($where as $cond =&gt; &amp;$term) {

      // is $cond an int? (i.e. Not a condition)

      if (is_int($cond)) {

        // $term is the full condition

        if ($term instanceof Zend_Db_Expr) {

          $term = $term-&gt;__toString();

        }

      } else {

        // $cond is the condition with placeholder,

        // and $term is quoted into the condition

        $term = $this-&gt;quoteInto($cond, $term);

      }

      $term = &#39;(&#39; . $term . &#39;)&#39;;

    }

    $where = implode(&#39; AND &#39;, $where);

    return $where;

  }

  /**

   * Creates and returns a new Zend_Db_Select object for this adapter.

   *

   * @return Zend_Db_Select

   */

  public function select()

  {

    return new Zend_Db_Select($this);

  }

  /**

   * Get the fetch mode.

   *

   * @return int

   */

  public function getFetchMode()

  {

    return $this-&gt;_fetchMode;

  }

  /**

   * Fetches all SQL result rows as a sequential array.

   * Uses the current fetchMode for the adapter.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed         $bind Data to bind into SELECT placeholders.

   * @param mixed         $fetchMode Override current fetch mode.

   * @return array

   */

  public function fetchAll($sql, $bind = array(), $fetchMode = null)

  {

    if ($fetchMode === null) {

      $fetchMode = $this-&gt;_fetchMode;

    }

    $stmt = $this-&gt;query($sql, $bind);

    $result = $stmt-&gt;fetchAll($fetchMode);

    return $result;

  }

  /**

   * Fetches the first row of the SQL result.

   * Uses the current fetchMode for the adapter.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed $bind Data to bind into SELECT placeholders.

   * @param mixed         $fetchMode Override current fetch mode.

   * @return mixed Array, object, or scalar depending on fetch mode.

   */

  public function fetchRow($sql, $bind = array(), $fetchMode = null)

  {

    if ($fetchMode === null) {

      $fetchMode = $this-&gt;_fetchMode;

    }

    $stmt = $this-&gt;query($sql, $bind);

    $result = $stmt-&gt;fetch($fetchMode);

    return $result;

  }

  /**

   * Fetches all SQL result rows as an associative array.

   *

   * The first column is the key, the entire row array is the

   * value. You should construct the query to be sure that

   * the first column contains unique values, or else

   * rows with duplicate values in the first column will

   * overwrite previous data.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed $bind Data to bind into SELECT placeholders.

   * @return array

   */

  public function fetchAssoc($sql, $bind = array())

  {

    $stmt = $this-&gt;query($sql, $bind);

    $data = array();

    while ($row = $stmt-&gt;fetch(Zend_Db::FETCH_ASSOC)) {

      $tmp = array_values(array_slice($row, 0, 1));

      $data[$tmp[0]] = $row;

    }

    return $data;

  }

  /**

   * Fetches the first column of all SQL result rows as an array.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed $bind Data to bind into SELECT placeholders.

   * @return array

   */

  public function fetchCol($sql, $bind = array())

  {

    $stmt = $this-&gt;query($sql, $bind);

    $result = $stmt-&gt;fetchAll(Zend_Db::FETCH_COLUMN, 0);

    return $result;

  }

  /**

   * Fetches all SQL result rows as an array of key-value pairs.

   *

   * The first column is the key, the second column is the

   * value.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed $bind Data to bind into SELECT placeholders.

   * @return array

   */

  public function fetchPairs($sql, $bind = array())

  {

    $stmt = $this-&gt;query($sql, $bind);

    $data = array();

    while ($row = $stmt-&gt;fetch(Zend_Db::FETCH_NUM)) {

      $data[$row[0]] = $row[1];

    }

    return $data;

  }

  /**

   * Fetches the first column of the first row of the SQL result.

   *

   * @param string|Zend_Db_Select $sql An SQL SELECT statement.

   * @param mixed $bind Data to bind into SELECT placeholders.

   * @return string

   */

  public function fetchOne($sql, $bind = array())

  {

    $stmt = $this-&gt;query($sql, $bind);

    $result = $stmt-&gt;fetchColumn(0);

    return $result;

  }

  /**

   * Quote a raw string.

   *

   * @param string $value   Raw string

   * @return string      Quoted string

   */

  protected function _quote($value)

  {

    if (is_int($value)) {

      return $value;

    } elseif (is_float($value)) {

      return sprintf(&#39;%F&#39;, $value);

    }

    return &quot;&#39;&quot; . addcslashes($value, &quot;\000\n\r\\&#39;\&quot;\032&quot;) . &quot;&#39;&quot;;

  }

  /**

   * Safely quotes a value for an SQL statement.

   *

   * If an array is passed as the value, the array values are quoted

   * and then returned as a comma-separated string.

   *

   * @param mixed $value The value to quote.

   * @param mixed $type OPTIONAL the SQL datatype name, or constant, or null.

   * @return mixed An SQL-safe quoted value (or string of separated values).

   */

  public function quote($value, $type = null)

  {

    $this-&gt;_connect();

    if ($value instanceof Zend_Db_Select) {

      return &#39;(&#39; . $value-&gt;assemble() . &#39;)&#39;;

    }

    if ($value instanceof Zend_Db_Expr) {

      return $value-&gt;__toString();

    }

    if (is_array($value)) {

      foreach ($value as &amp;$val) {

        $val = $this-&gt;quote($val, $type);

      }

      return implode(&#39;, &#39;, $value);

    }

    if ($type !== null &amp;&amp; array_key_exists($type = strtoupper($type), $this-&gt;_numericDataTypes)) {

      $quotedValue = &#39;0&#39;;

      switch ($this-&gt;_numericDataTypes[$type]) {

        case Zend_Db::INT_TYPE: // 32-bit integer

          $quotedValue = (string) intval($value);

          break;

        case Zend_Db::BIGINT_TYPE: // 64-bit integer

          // ANSI SQL-style hex literals (e.g. x&#39;[\dA-F]+&#39;)

          // are not supported here, because these are string

          // literals, not numeric literals.

          if (preg_match(&#39;/^(

             [+-]?         # optional sign

             (?:

              0[Xx][\da-fA-F]+   # ODBC-style hexadecimal

              |\d+         # decimal or octal, or MySQL ZEROFILL decimal

              (?:[eE][+-]?\d+)?  # optional exponent on decimals or octals

             )

            )/x&#39;,

            (string) $value, $matches)) {

            $quotedValue = $matches[1];

          }

          break;

        case Zend_Db::FLOAT_TYPE: // float or decimal

          $quotedValue = sprintf(&#39;%F&#39;, $value);

      }

      return $quotedValue;

    }

    return $this-&gt;_quote($value);

  }

  /**

   * Quotes a value and places into a piece of text at a placeholder.

   *

   * The placeholder is a question-mark; all placeholders will be replaced

   * with the quoted value.  For example:

   *

   * &lt;code&gt;

   * $text = &quot;WHERE date &lt; ?&quot;;

   * $date = &quot;2005-01-02&quot;;

   * $safe = $sql-&gt;quoteInto($text, $date);

   * // $safe = &quot;WHERE date &lt; &#39;2005-01-02&#39;&quot;

   * &lt;/code&gt;

   *

   * @param string $text The text with a placeholder.

   * @param mixed  $value The value to quote.

   * @param string $type OPTIONAL SQL datatype

   * @param integer $count OPTIONAL count of placeholders to replace

   * @return string An SQL-safe quoted value placed into the original text.

   */

  public function quoteInto($text, $value, $type = null, $count = null)

  {

    if ($count === null) {

      return str_replace(&#39;?&#39;, $this-&gt;quote($value, $type), $text);

    } else {

      while ($count &gt; 0) {

        if (strpos($text, &#39;?&#39;) !== false) {

          $text = substr_replace($text, $this-&gt;quote($value, $type), strpos($text, &#39;?&#39;), 1);

        }

        --$count;

      }

      return $text;

    }

  }

  /**

   * Quotes an identifier.

   *

   * Accepts a string representing a qualified indentifier. For Example:

   * &lt;code&gt;

   * $adapter-&gt;quoteIdentifier(&#39;myschema.mytable&#39;)

   * &lt;/code&gt;

   * Returns: &quot;myschema&quot;.&quot;mytable&quot;

   *

   * Or, an array of one or more identifiers that may form a qualified identifier:

   * &lt;code&gt;

   * $adapter-&gt;quoteIdentifier(array(&#39;myschema&#39;,&#39;my.table&#39;))

   * &lt;/code&gt;

   * Returns: &quot;myschema&quot;.&quot;my.table&quot;

   *

   * The actual quote character surrounding the identifiers may vary depending on

   * the adapter.

   *

   * @param string|array|Zend_Db_Expr $ident The identifier.

   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.

   * @return string The quoted identifier.

   */

  public function quoteIdentifier($ident, $auto=false)

  {

    return $this-&gt;_quoteIdentifierAs($ident, null, $auto);

  }

  /**

   * Quote a column identifier and alias.

   *

   * @param string|array|Zend_Db_Expr $ident The identifier or expression.

   * @param string $alias An alias for the column.

   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.

   * @return string The quoted identifier and alias.

   */

  public function quoteColumnAs($ident, $alias, $auto=false)

  {

    return $this-&gt;_quoteIdentifierAs($ident, $alias, $auto);

  }

  /**

   * Quote a table identifier and alias.

   *

   * @param string|array|Zend_Db_Expr $ident The identifier or expression.

   * @param string $alias An alias for the table.

   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.

   * @return string The quoted identifier and alias.

   */

  public function quoteTableAs($ident, $alias = null, $auto = false)

  {

    return $this-&gt;_quoteIdentifierAs($ident, $alias, $auto);

  }

  /**

   * Quote an identifier and an optional alias.

   *

   * @param string|array|Zend_Db_Expr $ident The identifier or expression.

   * @param string $alias An optional alias.

   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.

   * @param string $as The string to add between the identifier/expression and the alias.

   * @return string The quoted identifier and alias.

   */

  protected function _quoteIdentifierAs($ident, $alias = null, $auto = false, $as = &#39; AS &#39;)

  {

    if ($ident instanceof Zend_Db_Expr) {

      $quoted = $ident-&gt;__toString();

    } elseif ($ident instanceof Zend_Db_Select) {

      $quoted = &#39;(&#39; . $ident-&gt;assemble() . &#39;)&#39;;

    } else {

      if (is_string($ident)) {

        $ident = explode(&#39;.&#39;, $ident);

      }

      if (is_array($ident)) {

        $segments = array();

        foreach ($ident as $segment) {

          if ($segment instanceof Zend_Db_Expr) {

            $segments[] = $segment-&gt;__toString();

          } else {

            $segments[] = $this-&gt;_quoteIdentifier($segment, $auto);

          }

        }

        if ($alias !== null &amp;&amp; end($ident) == $alias) {

          $alias = null;

        }

        $quoted = implode(&#39;.&#39;, $segments);

      } else {

        $quoted = $this-&gt;_quoteIdentifier($ident, $auto);

      }

    }

    if ($alias !== null) {

      $quoted .= $as . $this-&gt;_quoteIdentifier($alias, $auto);

    }

    return $quoted;

  }

  /**

   * Quote an identifier.

   *

   * @param string $value The identifier or expression.

   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.

   * @return string    The quoted identifier and alias.

   */

  protected function _quoteIdentifier($value, $auto=false)

  {

    if ($auto === false || $this-&gt;_autoQuoteIdentifiers === true) {

      $q = $this-&gt;getQuoteIdentifierSymbol();

      return ($q . str_replace(&quot;$q&quot;, &quot;$q$q&quot;, $value) . $q);

    }

    return $value;

  }

  /**

   * Returns the symbol the adapter uses for delimited identifiers.

   *

   * @return string

   */

  public function getQuoteIdentifierSymbol()

  {

    return &#39;&quot;&#39;;

  }

  /**

   * Return the most recent value from the specified sequence in the database.

   * This is supported only on RDBMS brands that support sequences

   * (e.g. Oracle, PostgreSQL, DB2). Other RDBMS brands return null.

   *

   * @param string $sequenceName

   * @return string

   */

  public function lastSequenceId($sequenceName)

  {

    return null;

  }

  /**

   * Generate a new value from the specified sequence in the database, and return it.

   * This is supported only on RDBMS brands that support sequences

   * (e.g. Oracle, PostgreSQL, DB2). Other RDBMS brands return null.

   *

   * @param string $sequenceName

   * @return string

   */

  public function nextSequenceId($sequenceName)

  {

    return null;

  }

  /**

   * Helper method to change the case of the strings used

   * when returning result sets in FETCH_ASSOC and FETCH_BOTH

   * modes.

   *

   * This is not intended to be used by application code,

   * but the method must be public so the Statement class

   * can invoke it.

   *

   * @param string $key

   * @return string

   */

  public function foldCase($key)

  {

    switch ($this-&gt;_caseFolding) {

      case Zend_Db::CASE_LOWER:

        $value = strtolower((string) $key);

        break;

      case Zend_Db::CASE_UPPER:

        $value = strtoupper((string) $key);

        break;

      case Zend_Db::CASE_NATURAL:

      default:

        $value = (string) $key;

    }

    return $value;

  }

  /**

   * called when object is getting serialized

   * This disconnects the DB object that cant be serialized

   *

   * @throws Zend_Db_Adapter_Exception

   * @return array

   */

  public function __sleep()

  {

    if ($this-&gt;_allowSerialization == false) {

      /** @see Zend_Db_Adapter_Exception */

      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;

      throw new Zend_Db_Adapter_Exception(get_class($this) .&quot; is not allowed to be serialized&quot;);

    }

    $this-&gt;_connection = false;

    return array_keys(array_diff_key(get_object_vars($this), array(&#39;_connection&#39;=&gt;false)));

  }

  /**

   * called when object is getting unserialized

   *

   * @return void

   */

  public function __wakeup()

  {

    if ($this-&gt;_autoReconnectOnUnserialize == true) {

      $this-&gt;getConnection();

    }

  }

  /**

   * Abstract Methods

   */

  /**

   * Returns a list of the tables in the database.

   *

   * @return array

   */

  abstract public function listTables();

  /**

   * Returns the column descriptions for a table.

   *

   * The return value is an associative array keyed by the column name,

   * as returned by the RDBMS.

   *

   * The value of each array element is an associative array

   * with the following keys:

   *

   * SCHEMA_NAME =&gt; string; name of database or schema

   * TABLE_NAME =&gt; string;

   * COLUMN_NAME =&gt; string; column name

   * COLUMN_POSITION =&gt; number; ordinal position of column in table

   * DATA_TYPE  =&gt; string; SQL datatype name of column

   * DEFAULT   =&gt; string; default expression of column, null if none

   * NULLABLE  =&gt; boolean; true if column can have nulls

   * LENGTH   =&gt; number; length of CHAR/VARCHAR

   * SCALE    =&gt; number; scale of NUMERIC/DECIMAL

   * PRECISION  =&gt; number; precision of NUMERIC/DECIMAL

   * UNSIGNED  =&gt; boolean; unsigned property of an integer type

   * PRIMARY   =&gt; boolean; true if column is part of the primary key

   * PRIMARY_POSITION =&gt; integer; position of column in primary key

   *

   * @param string $tableName

   * @param string $schemaName OPTIONAL

   * @return array

   */

  abstract public function describeTable($tableName, $schemaName = null);

  /**

   * Creates a connection to the database.

   *

   * @return void

   */

  abstract protected function _connect();

  /**

   * Test if a connection is active

   *

   * @return boolean

   */

  abstract public function isConnected();

  /**

   * Force the connection to close.

   *

   * @return void

   */

  abstract public function closeConnection();

  /**

   * Prepare a statement and return a PDOStatement-like object.

   *

   * @param string|Zend_Db_Select $sql SQL query

   * @return Zend_Db_Statement|PDOStatement

   */

  abstract public function prepare($sql);

  /**

   * Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column.

   *

   * As a convention, on RDBMS brands that support sequences

   * (e.g. Oracle, PostgreSQL, DB2), this method forms the name of a sequence

   * from the arguments and returns the last id generated by that sequence.

   * On RDBMS brands that support IDENTITY/AUTOINCREMENT columns, this method

   * returns the last value generated for such a column, and the table name

   * argument is disregarded.

   *

   * @param string $tableName  OPTIONAL Name of table.

   * @param string $primaryKey OPTIONAL Name of primary key column.

   * @return string

   */

  abstract public function lastInsertId($tableName = null, $primaryKey = null);

  /**

   * Begin a transaction.

   */

  abstract protected function _beginTransaction();

  /**

   * Commit a transaction.

   */

  abstract protected function _commit();

  /**

   * Roll-back a transaction.

   */

  abstract protected function _rollBack();

  /**

   * Set the fetch mode.

   *

   * @param integer $mode

   * @return void

   * @throws Zend_Db_Adapter_Exception

   */

  abstract public function setFetchMode($mode);

  /**

   * Adds an adapter-specific LIMIT clause to the SELECT statement.

   *

   * @param mixed $sql

   * @param integer $count

   * @param integer $offset

   * @return string

   */

  abstract public function limit($sql, $count, $offset = 0);

  /**

   * Check if the adapter supports real SQL parameters.

   *

   * @param string $type &#39;positional&#39; or &#39;named&#39;

   * @return bool

   */

  abstract public function supportsParameters($type);

  /**

   * Retrieve server version in PHP style

   *

   * @return string

   */

  abstract public function getServerVersion();

}

Nach dem Login kopieren

到此,我已经晕了。你呢???

哈哈哈。。。

下面看一些简单的案例

插入数据到数据库:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

&lt;?php

require_once &#39;Zend/Db.php&#39;;

$params = array(&#39;host&#39;=&gt;&#39;127.0.0.1&#39;,

  &#39;username&#39;=&gt;&#39;root&#39;,

  &#39;password&#39;=&gt;&#39;&#39;,

  &#39;dbname&#39;=&gt;&#39;test&#39;

  );

$db = Zend_Db::factory(&#39;PDO_Mysql&#39;,$params);

$row = array(

  'username'=>'Jiqing',

  'password'=>'jiqing90061234'

  );

$table = 'user';

$res = $db->insert($table,$row);

if($res){

  echo "成功插入新的记录!";

  echo "<p>";

  $last_insert_id = $db->lastInsertId($table);

  echo "新记录的ID值为:";

  echo $last_insert_id;

  echo "<p>";

  echo "其内容为:";

  $sql = "select * from $table where id=$last_insert_id";

  $result = $db->fetchRow($sql);

  echo "<p>";

  foreach($result as $key=>$val){

    echo $key;

    echo "值为:";

    echo $val;

    echo "<p>";

  }

}else{

  echo "插入数据有误";

}

Nach dem Login kopieren

修改update方法

删除delete方法

都大同小异,首先连接数据库,然后填写相应参数,执行即可。

查询方法总结:

fetchAll()匹配查询结果,返回一个连续的数组。
fetchAssoc()匹配查询结果,返回一个联合的数组。
fetchCol()匹配结果的第一列,返回一个数组。
fetchOne()陪陪查询结果的第一列与第一行的值,返回一个字符串。
fetchRow()匹配查询结果的第一行,返回一个数组。

常用的是第一个和最后一个方法,其他的方法用的不是很多。

希望本文所述对大家基于Zend Framework框架的PHP程序设计有所帮助。

更多Zend Framework入门教程之Zend_Db数据库操作详解相关文章请关注PHP中文网!

Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße Artikel -Tags

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Wie implementiert die Go-Sprache die Hinzufügungs-, Lösch-, Änderungs- und Abfragevorgänge der Datenbank? Wie implementiert die Go-Sprache die Hinzufügungs-, Lösch-, Änderungs- und Abfragevorgänge der Datenbank? Mar 27, 2024 pm 09:39 PM

Wie implementiert die Go-Sprache die Hinzufügungs-, Lösch-, Änderungs- und Abfragevorgänge der Datenbank?

Ausführliches Tutorial zum Herstellen einer Datenbankverbindung mit MySQLi in PHP Ausführliches Tutorial zum Herstellen einer Datenbankverbindung mit MySQLi in PHP Jun 04, 2024 pm 01:42 PM

Ausführliches Tutorial zum Herstellen einer Datenbankverbindung mit MySQLi in PHP

Wie implementiert Hibernate polymorphe Zuordnung? Wie implementiert Hibernate polymorphe Zuordnung? Apr 17, 2024 pm 12:09 PM

Wie implementiert Hibernate polymorphe Zuordnung?

iOS 18 fügt eine neue Albumfunktion „Wiederhergestellt' hinzu, um verlorene oder beschädigte Fotos wiederherzustellen iOS 18 fügt eine neue Albumfunktion „Wiederhergestellt' hinzu, um verlorene oder beschädigte Fotos wiederherzustellen Jul 18, 2024 am 05:48 AM

iOS 18 fügt eine neue Albumfunktion „Wiederhergestellt' hinzu, um verlorene oder beschädigte Fotos wiederherzustellen

Eine ausführliche Analyse, wie HTML die Datenbank liest Eine ausführliche Analyse, wie HTML die Datenbank liest Apr 09, 2024 pm 12:36 PM

Eine ausführliche Analyse, wie HTML die Datenbank liest

Analyse der Grundprinzipien des MySQL-Datenbankverwaltungssystems Analyse der Grundprinzipien des MySQL-Datenbankverwaltungssystems Mar 25, 2024 pm 12:42 PM

Analyse der Grundprinzipien des MySQL-Datenbankverwaltungssystems

Tipps und Praktiken zum Umgang mit verstümmelten chinesischen Zeichen in Datenbanken mit PHP Tipps und Praktiken zum Umgang mit verstümmelten chinesischen Zeichen in Datenbanken mit PHP Mar 27, 2024 pm 05:21 PM

Tipps und Praktiken zum Umgang mit verstümmelten chinesischen Zeichen in Datenbanken mit PHP

Wie lässt sich Go WebSocket in Datenbanken integrieren? Wie lässt sich Go WebSocket in Datenbanken integrieren? Jun 05, 2024 pm 03:18 PM

Wie lässt sich Go WebSocket in Datenbanken integrieren?

See all articles