You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

idb.php 1.6KB

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