diff options
author | Adam Frisby | 2007-05-04 06:51:18 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-04 06:51:18 +0000 |
commit | 0c78fc3dbcb6414fe39afcf175a73bc1107c1910 (patch) | |
tree | 4a25f82c32dfc92d23e644ca35099b41cc67dcb0 /OpenGrid.Framework.Data.MySQL | |
parent | Added Close() function to sanely terminate the grid data interfaces. Declarin... (diff) | |
download | opensim-SC_OLD-0c78fc3dbcb6414fe39afcf175a73bc1107c1910.zip opensim-SC_OLD-0c78fc3dbcb6414fe39afcf175a73bc1107c1910.tar.gz opensim-SC_OLD-0c78fc3dbcb6414fe39afcf175a73bc1107c1910.tar.bz2 opensim-SC_OLD-0c78fc3dbcb6414fe39afcf175a73bc1107c1910.tar.xz |
Grid server V2.0! Now with extra crunchy SQL support.
Status:
* Prebuild will be broken, someone needs to update prebuild.xml with the new dependencies.
* The sim status check function does not yet function.
* Sims must be manually added to the database - automatic insertion isnt supported yet.
Diffstat (limited to 'OpenGrid.Framework.Data.MySQL')
-rw-r--r-- | OpenGrid.Framework.Data.MySQL/MySQLGridData.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs b/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs index 3db32f3..0a84cdb 100644 --- a/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs +++ b/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs | |||
@@ -25,6 +25,16 @@ namespace OpenGrid.Framework.Data.MySQL | |||
25 | database.Close(); | 25 | database.Close(); |
26 | } | 26 | } |
27 | 27 | ||
28 | public string getName() | ||
29 | { | ||
30 | return "MySql OpenGridData"; | ||
31 | } | ||
32 | |||
33 | public string getVersion() | ||
34 | { | ||
35 | return "0.1"; | ||
36 | } | ||
37 | |||
28 | /// <summary> | 38 | /// <summary> |
29 | /// Returns a sim profile from it's location | 39 | /// Returns a sim profile from it's location |
30 | /// </summary> | 40 | /// </summary> |