Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding Statement class skeleton
  • Loading branch information
lorenzo committed Oct 14, 2012
1 parent 220959f commit ba700a6
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions lib/Cake/Model/Datasource/Database/Statement.php
@@ -0,0 +1,49 @@
<?php

namespace Cake\Model\Datasource\Database;

/**
* Represents a database statement
*
**/
class Statement {

protected $_queryString;

public function bindValue($column, $value, $type = null) {

}

public function closeCursor() {

}

public function columnCount() {

}

public function errorCode() {

}

public function errorInfo() {

}

public function execute() {

}

public function fetch($type) {

}

public function fetchAll() {

}

public function rowCount() {

}

}

0 comments on commit ba700a6

Please sign in to comment.