mirror of https://github.com/BOINC/boinc.git
14 lines
375 B
PHP
14 lines
375 B
PHP
<?php
|
|
|
|
/**
|
|
* Please see the MySQL database handler for how to implement this interface
|
|
* for other databases.
|
|
**/
|
|
|
|
class DatabaseHandler {
|
|
// STUB: So far the only class that implements this interface is the MySQL
|
|
// implementation. The implementation there defines the interface untill
|
|
// someone decides to actually implement something for other DBMSs.
|
|
}
|
|
|
|
?>
|