flush
[m6w6/pq-gateway] / lib / pq / Query / WriterInterface.php
1 <?php
2
3 namespace pq\Query;
4
5 interface WriterInterface
6 {
7 function __toString();
8 function getParams();
9 function getTypes();
10 function write(/*...*/);
11 function param($param, $type = null);
12 function criteria(array $criteria);
13 function reset();
14 function exec(\pq\Connection $c);
15 }