2003-08-19 06:44:58 +00:00
|
|
|
<?
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("The BOINC database");
|
|
|
|
echo "
|
2002-09-10 17:04:05 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
<p>
|
2002-08-19 18:43:10 +00:00
|
|
|
The database tables are as follows:
|
2002-04-30 22:22:54 +00:00
|
|
|
<dl>
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> platform
|
|
|
|
<dd> Compilation targets of the core client and/or applications.
|
|
|
|
<dt> app
|
2002-08-20 23:54:17 +00:00
|
|
|
<dd> Applications.
|
2003-08-19 06:44:58 +00:00
|
|
|
The core client is treated as an application; its name is 'core_client'.
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> app_version
|
2002-08-20 23:54:17 +00:00
|
|
|
<dd> Versions of applications.
|
|
|
|
Each record includes a URL for
|
2002-07-29 19:01:38 +00:00
|
|
|
downloading the executable, and the MD5 checksum of the executable.
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> user
|
|
|
|
<dd> Describes users, including their email address, name, web
|
2002-07-29 19:01:38 +00:00
|
|
|
password, and authenticator.
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> preferences
|
2002-08-20 23:54:17 +00:00
|
|
|
<dd> Describes preferences.
|
|
|
|
The actual preference information is
|
2003-08-19 06:44:58 +00:00
|
|
|
stored in an XML document in a 'blob' field of this table.
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> host
|
|
|
|
<dd> Describes hosts.
|
|
|
|
<dt> workunit
|
2002-08-20 23:54:17 +00:00
|
|
|
<dd> Describes workunits.
|
|
|
|
The input file descriptions are stored in an XML document in a blob field.
|
|
|
|
Includes counts of the number of
|
2002-07-29 19:01:38 +00:00
|
|
|
results linked to this workunit, and the numbers that have been sent,
|
|
|
|
that have succeeded, and that have failed.
|
2002-08-19 18:43:10 +00:00
|
|
|
<dt> result
|
2002-08-20 23:54:17 +00:00
|
|
|
<dd> Describes results.
|
2003-08-19 06:44:58 +00:00
|
|
|
Includes a 'state' (whether the result has been dispatched).
|
2002-08-20 23:54:17 +00:00
|
|
|
Stores a number of items relevant only after the
|
2002-07-29 19:01:38 +00:00
|
|
|
result has been returned: CPU time, exit status, and validation status.
|
2002-04-30 22:22:54 +00:00
|
|
|
</dl>
|
2003-08-19 06:44:58 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|