DIGITEC-314 Ошибка скрипта импорта

Создан интерфейс для классов SqlResultProvider и SqlResultCollection. В последний добавлены недостающие метода
This commit is contained in:
Alexander Demidov
2014-03-13 12:39:44 +04:00
parent 6b0bf4058e
commit 5f9c295c01
3 changed files with 51 additions and 14 deletions

10
model/iSqlResultItems.php Normal file
View File

@ -0,0 +1,10 @@
<?php
interface iSqlResultItems
{
public function fetchAll();
public function fetchField($field);
public function fetch();
}