Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. interface DatabaseAdapterInterface
  4. {
  5. function connect();
  6.  
  7. function disconnect();
  8.  
  9. function query($query);
  10.  
  11. function fetch();
  12.  
  13. function select($table, $where, $fields, $order, $limit, $offset);
  14.  
  15. function insert($table, array $data);
  16.  
  17. function update($table, array $data, $where);
  18.  
  19. function delete($table, $where);
  20.  
  21. function getInsertId();
  22.  
  23. function countRows();
  24.  
  25. function getAffectedRows();
  26. }
Add Comment
Please, Sign In to add comment