IDb.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OCP;
  24. /**
  25. * Small Facade for being able to inject the database connection for tests
  26. * @since 7.0.0 - extends IDBConnection was added in 8.1.0
  27. */
  28. interface IDb extends IDBConnection {
  29. /**
  30. * Used to abstract the owncloud database access away
  31. * @param string $sql the sql query with ? placeholder for params
  32. * @param int $limit the maximum number of rows
  33. * @param int $offset from which row we want to start
  34. * @return \OC_DB_StatementWrapper prepared SQL query
  35. * @since 7.0.0
  36. */
  37. public function prepareQuery($sql, $limit=null, $offset=null);
  38. /**
  39. * Used to get the id of the just inserted element
  40. * @param string $tableName the name of the table where we inserted the item
  41. * @return int the id of the inserted element
  42. * @since 7.0.0
  43. */
  44. public function getInsertId($tableName);
  45. }