Files
geodb/geoapi/database/HelloApiSQLManager.php
stubbfel 61f8cbbf4f add doku
2013-06-20 11:26:10 +02:00

27 lines
484 B
PHP

<?php
include_once "../../global.inc.php";
include_once PATH_DATABASE . "/SQLManager.php";
/**
* The SQLManager manage the SQL-Connection for an API
*
* @author stubbfel
*/
class HelloApiSQLManager extends \database\SQLManager{
public function __construct() {
parent::__construct();
}
public function __destruct() {
parent::__destruct();
}
public function sendHelloQuery() {
return $this->query("SELECT * FROM sps");
}
}
?>