2007-06-02 00:37:31 +00:00
/ *
2007-06-05 20:40:37 +00:00
* Copyright ( c ) Contributors , http : //www.openmetaverse.org/
* See CONTRIBUTORS . TXT for a full list of copyright holders .
2007-06-02 00:37:31 +00:00
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are met :
* * Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* * Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
2007-06-05 20:40:37 +00:00
* * Neither the name of the OpenSim Project nor the
2007-06-02 00:37:31 +00:00
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission .
*
2007-06-05 20:40:37 +00:00
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ` ` AS IS AND ANY
2007-06-02 00:37:31 +00:00
* EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2007-06-05 20:40:37 +00:00
* DISCLAIMED . IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
2007-06-02 00:37:31 +00:00
* DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
* ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ;
* LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* /
2007-05-04 03:25:20 +00:00
using System ;
using System.Collections.Generic ;
using System.Text ;
using System.Data ;
// MySQL Native
using MySql ;
using MySql.Data ;
using MySql.Data.Types ;
using MySql.Data.MySqlClient ;
2007-05-04 03:52:53 +00:00
using OpenGrid.Framework.Data ;
2007-05-04 03:25:20 +00:00
namespace OpenGrid.Framework.Data.MySQL
{
2007-06-02 00:37:31 +00:00
/// <summary>
/// A MySQL Database manager
/// </summary>
2007-05-04 03:25:20 +00:00
class MySQLManager
{
2007-06-02 00:37:31 +00:00
/// <summary>
/// The database connection object
/// </summary>
2007-05-04 03:25:20 +00:00
IDbConnection dbcon ;
2007-06-02 00:37:31 +00:00
/// <summary>
/// Connection string for ADO.net
/// </summary>
2007-05-30 02:36:48 +00:00
string connectionString ;
2007-05-04 03:25:20 +00:00
/// <summary>
/// Initialises and creates a new MySQL connection and maintains it.
/// </summary>
/// <param name="hostname">The MySQL server being connected to</param>
/// <param name="database">The name of the MySQL database being used</param>
/// <param name="username">The username logging into the database</param>
/// <param name="password">The password for the user logging in</param>
/// <param name="cpooling">Whether to use connection pooling or not, can be one of the following: 'yes', 'true', 'no' or 'false', if unsure use 'false'.</param>
2007-05-25 08:21:16 +00:00
public MySQLManager ( string hostname , string database , string username , string password , string cpooling , string port )
2007-05-04 03:25:20 +00:00
{
try
{
2007-05-30 02:36:48 +00:00
connectionString = "Server=" + hostname + ";Port=" + port + ";Database=" + database + ";User ID=" + username + ";Password=" + password + ";Pooling=" + cpooling + ";" ;
2007-05-04 03:25:20 +00:00
dbcon = new MySqlConnection ( connectionString ) ;
dbcon . Open ( ) ;
2007-05-28 23:32:05 +00:00
System . Console . WriteLine ( "MySQL connection established" ) ;
2007-05-04 03:25:20 +00:00
}
catch ( Exception e )
{
throw new Exception ( "Error initialising MySql Database: " + e . ToString ( ) ) ;
}
}
/// <summary>
/// Shuts down the database connection
/// </summary>
public void Close ( )
{
dbcon . Close ( ) ;
dbcon = null ;
}
2007-05-30 02:36:48 +00:00
/// <summary>
/// Reconnects to the database
/// </summary>
public void Reconnect ( )
{
lock ( dbcon )
{
try
{
// Close the DB connection
dbcon . Close ( ) ;
// Try reopen it
dbcon = new MySqlConnection ( connectionString ) ;
dbcon . Open ( ) ;
}
catch ( Exception e )
{
Console . WriteLine ( "Unable to reconnect to database " + e . ToString ( ) ) ;
}
}
}
2007-05-04 03:25:20 +00:00
/// <summary>
/// Runs a query with protection against SQL Injection by using parameterised input.
/// </summary>
/// <param name="sql">The SQL string - replace any variables such as WHERE x = "y" with WHERE x = @y</param>
/// <param name="parameters">The parameters - index so that @y is indexed as 'y'</param>
/// <returns>A MySQL DB Command</returns>
public IDbCommand Query ( string sql , Dictionary < string , string > parameters )
{
2007-05-13 14:59:24 +00:00
try
2007-05-04 03:25:20 +00:00
{
2007-05-13 14:59:24 +00:00
MySqlCommand dbcommand = ( MySqlCommand ) dbcon . CreateCommand ( ) ;
dbcommand . CommandText = sql ;
foreach ( KeyValuePair < string , string > param in parameters )
{
dbcommand . Parameters . Add ( param . Key , param . Value ) ;
}
return ( IDbCommand ) dbcommand ;
}
2007-05-30 02:36:48 +00:00
catch
2007-05-13 14:59:24 +00:00
{
2007-05-30 02:36:48 +00:00
lock ( dbcon )
{
// Close the DB connection
try
{
dbcon . Close ( ) ;
}
catch { }
// Try reopen it
try
{
dbcon = new MySqlConnection ( connectionString ) ;
dbcon . Open ( ) ;
}
catch ( Exception e )
{
Console . WriteLine ( "Unable to reconnect to database " + e . ToString ( ) ) ;
}
// Run the query again
try
{
MySqlCommand dbcommand = ( MySqlCommand ) dbcon . CreateCommand ( ) ;
dbcommand . CommandText = sql ;
foreach ( KeyValuePair < string , string > param in parameters )
{
dbcommand . Parameters . Add ( param . Key , param . Value ) ;
}
return ( IDbCommand ) dbcommand ;
}
catch ( Exception e )
{
// Return null if it fails.
Console . WriteLine ( "Failed during Query generation: " + e . ToString ( ) ) ;
return null ;
}
}
2007-05-04 03:25:20 +00:00
}
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Reads a region row from a database reader
/// </summary>
/// <param name="reader">An active database reader</param>
/// <returns>A region profile</returns>
2007-05-31 14:05:19 +00:00
public SimProfileData readSimRow ( IDataReader reader )
2007-05-04 03:25:20 +00:00
{
SimProfileData retval = new SimProfileData ( ) ;
if ( reader . Read ( ) )
{
2007-05-04 04:03:04 +00:00
// Region Main
2007-05-13 14:59:24 +00:00
retval . regionHandle = Convert . ToUInt64 ( reader [ "regionHandle" ] . ToString ( ) ) ;
2007-05-04 04:03:04 +00:00
retval . regionName = ( string ) reader [ "regionName" ] ;
retval . UUID = new libsecondlife . LLUUID ( ( string ) reader [ "uuid" ] ) ;
// Secrets
retval . regionRecvKey = ( string ) reader [ "regionRecvKey" ] ;
retval . regionSecret = ( string ) reader [ "regionSecret" ] ;
retval . regionSendKey = ( string ) reader [ "regionSendKey" ] ;
// Region Server
2007-05-04 03:52:53 +00:00
retval . regionDataURI = ( string ) reader [ "regionDataURI" ] ;
2007-05-04 04:11:59 +00:00
retval . regionOnline = false ; // Needs to be pinged before this can be set.
retval . serverIP = ( string ) reader [ "serverIP" ] ;
retval . serverPort = ( uint ) reader [ "serverPort" ] ;
retval . serverURI = ( string ) reader [ "serverURI" ] ;
2007-05-04 04:03:04 +00:00
// Location
2007-05-13 14:59:24 +00:00
retval . regionLocX = Convert . ToUInt32 ( reader [ "locX" ] . ToString ( ) ) ;
retval . regionLocY = Convert . ToUInt32 ( reader [ "locY" ] . ToString ( ) ) ;
retval . regionLocZ = Convert . ToUInt32 ( reader [ "locZ" ] . ToString ( ) ) ;
2007-05-04 04:03:04 +00:00
// Neighbours - 0 = No Override
2007-05-13 14:59:24 +00:00
retval . regionEastOverrideHandle = Convert . ToUInt64 ( reader [ "eastOverrideHandle" ] . ToString ( ) ) ;
retval . regionWestOverrideHandle = Convert . ToUInt64 ( reader [ "westOverrideHandle" ] . ToString ( ) ) ;
retval . regionSouthOverrideHandle = Convert . ToUInt64 ( reader [ "southOverrideHandle" ] . ToString ( ) ) ;
retval . regionNorthOverrideHandle = Convert . ToUInt64 ( reader [ "northOverrideHandle" ] . ToString ( ) ) ;
2007-05-04 07:01:37 +00:00
// Assets
retval . regionAssetURI = ( string ) reader [ "regionAssetURI" ] ;
retval . regionAssetRecvKey = ( string ) reader [ "regionAssetRecvKey" ] ;
retval . regionAssetSendKey = ( string ) reader [ "regionAssetSendKey" ] ;
// Userserver
retval . regionUserURI = ( string ) reader [ "regionUserURI" ] ;
retval . regionUserRecvKey = ( string ) reader [ "regionUserRecvKey" ] ;
retval . regionUserSendKey = ( string ) reader [ "regionUserSendKey" ] ;
2007-05-20 14:21:55 +00:00
// World Map Addition
2007-05-28 23:32:05 +00:00
string tempRegionMap = reader [ "regionMapTexture" ] . ToString ( ) ;
if ( tempRegionMap ! = "" )
{
retval . regionMapTextureID = new libsecondlife . LLUUID ( tempRegionMap ) ;
}
else
{
retval . regionMapTextureID = new libsecondlife . LLUUID ( ) ;
}
2007-05-20 14:21:55 +00:00
}
else
{
return null ;
}
return retval ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Reads an agent row from a database reader
/// </summary>
/// <param name="reader">An active database reader</param>
/// <returns>A user session agent</returns>
2007-05-31 14:05:19 +00:00
public UserAgentData readAgentRow ( IDataReader reader )
2007-05-20 14:21:55 +00:00
{
UserAgentData retval = new UserAgentData ( ) ;
if ( reader . Read ( ) )
{
// Agent IDs
retval . UUID = new libsecondlife . LLUUID ( ( string ) reader [ "UUID" ] ) ;
retval . sessionID = new libsecondlife . LLUUID ( ( string ) reader [ "sessionID" ] ) ;
retval . secureSessionID = new libsecondlife . LLUUID ( ( string ) reader [ "secureSessionID" ] ) ;
// Agent Who?
retval . agentIP = ( string ) reader [ "agentIP" ] ;
retval . agentPort = Convert . ToUInt32 ( reader [ "agentPort" ] . ToString ( ) ) ;
retval . agentOnline = Convert . ToBoolean ( reader [ "agentOnline" ] . ToString ( ) ) ;
// Login/Logout times (UNIX Epoch)
retval . loginTime = Convert . ToInt32 ( reader [ "loginTime" ] . ToString ( ) ) ;
retval . logoutTime = Convert . ToInt32 ( reader [ "logoutTime" ] . ToString ( ) ) ;
// Current position
retval . currentRegion = ( string ) reader [ "currentRegion" ] ;
retval . currentHandle = Convert . ToUInt64 ( reader [ "currentHandle" ] . ToString ( ) ) ;
libsecondlife . LLVector3 . TryParse ( ( string ) reader [ "currentPos" ] , out retval . currentPos ) ;
}
else
{
return null ;
}
return retval ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Reads a user profile from an active data reader
/// </summary>
/// <param name="reader">An active database reader</param>
/// <returns>A user profile</returns>
2007-05-31 14:05:19 +00:00
public UserProfileData readUserRow ( IDataReader reader )
2007-05-20 14:21:55 +00:00
{
UserProfileData retval = new UserProfileData ( ) ;
if ( reader . Read ( ) )
{
retval . UUID = new libsecondlife . LLUUID ( ( string ) reader [ "UUID" ] ) ;
retval . username = ( string ) reader [ "username" ] ;
retval . surname = ( string ) reader [ "lastname" ] ;
retval . passwordHash = ( string ) reader [ "passwordHash" ] ;
retval . passwordSalt = ( string ) reader [ "passwordSalt" ] ;
retval . homeRegion = Convert . ToUInt64 ( reader [ "homeRegion" ] . ToString ( ) ) ;
retval . homeLocation = new libsecondlife . LLVector3 (
Convert . ToSingle ( reader [ "homeLocationX" ] . ToString ( ) ) ,
Convert . ToSingle ( reader [ "homeLocationY" ] . ToString ( ) ) ,
Convert . ToSingle ( reader [ "homeLocationZ" ] . ToString ( ) ) ) ;
retval . homeLookAt = new libsecondlife . LLVector3 (
Convert . ToSingle ( reader [ "homeLookAtX" ] . ToString ( ) ) ,
Convert . ToSingle ( reader [ "homeLookAtY" ] . ToString ( ) ) ,
Convert . ToSingle ( reader [ "homeLookAtZ" ] . ToString ( ) ) ) ;
retval . created = Convert . ToInt32 ( reader [ "created" ] . ToString ( ) ) ;
retval . lastLogin = Convert . ToInt32 ( reader [ "lastLogin" ] . ToString ( ) ) ;
retval . userInventoryURI = ( string ) reader [ "userInventoryURI" ] ;
retval . userAssetURI = ( string ) reader [ "userAssetURI" ] ;
retval . profileCanDoMask = Convert . ToUInt32 ( reader [ "profileCanDoMask" ] . ToString ( ) ) ;
retval . profileWantDoMask = Convert . ToUInt32 ( reader [ "profileWantDoMask" ] . ToString ( ) ) ;
retval . profileAboutText = ( string ) reader [ "profileAboutText" ] ;
retval . profileFirstText = ( string ) reader [ "profileFirstText" ] ;
retval . profileImage = new libsecondlife . LLUUID ( ( string ) reader [ "profileImage" ] ) ;
retval . profileFirstImage = new libsecondlife . LLUUID ( ( string ) reader [ "profileFirstImage" ] ) ;
2007-05-04 03:25:20 +00:00
}
else
{
2007-05-13 14:59:24 +00:00
return null ;
2007-05-04 03:25:20 +00:00
}
return retval ;
}
2007-05-05 23:04:47 +00:00
2007-05-31 14:08:34 +00:00
/// <summary>
/// Reads a list of inventory folders returned by a query.
/// </summary>
/// <param name="reader">A MySQL Data Reader</param>
/// <returns>A List containing inventory folders</returns>
public List < InventoryFolderBase > readInventoryFolders ( IDataReader reader )
2007-05-31 14:05:19 +00:00
{
List < InventoryFolderBase > rows = new List < InventoryFolderBase > ( ) ;
while ( reader . Read ( ) )
{
try
{
2007-05-31 14:24:15 +00:00
InventoryFolderBase folder = new InventoryFolderBase ( ) ;
2007-05-31 14:05:19 +00:00
2007-05-31 14:24:15 +00:00
folder . agentID = new libsecondlife . LLUUID ( ( string ) reader [ "agentID" ] ) ;
folder . parentID = new libsecondlife . LLUUID ( ( string ) reader [ "parentFolderID" ] ) ;
folder . folderID = new libsecondlife . LLUUID ( ( string ) reader [ "folderID" ] ) ;
folder . name = ( string ) reader [ "folderName" ] ;
2007-05-31 14:05:19 +00:00
2007-05-31 14:24:15 +00:00
rows . Add ( folder ) ;
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
}
}
return rows ;
}
/// <summary>
/// Reads a collection of items from an SQL result
/// </summary>
/// <param name="reader">The SQL Result</param>
/// <returns>A List containing Inventory Items</returns>
public List < InventoryItemBase > readInventoryItems ( IDataReader reader )
{
List < InventoryItemBase > rows = new List < InventoryItemBase > ( ) ;
while ( reader . Read ( ) )
{
try
{
InventoryItemBase item = new InventoryItemBase ( ) ;
item . assetID = new libsecondlife . LLUUID ( ( string ) reader [ "assetID" ] ) ;
item . avatarID = new libsecondlife . LLUUID ( ( string ) reader [ "avatarID" ] ) ;
item . inventoryCurrentPermissions = Convert . ToUInt32 ( reader [ "inventoryCurrentPermissions" ] . ToString ( ) ) ;
item . inventoryDescription = ( string ) reader [ "inventoryDescription" ] ;
item . inventoryID = new libsecondlife . LLUUID ( ( string ) reader [ "inventoryID" ] ) ;
item . inventoryName = ( string ) reader [ "inventoryName" ] ;
item . inventoryNextPermissions = Convert . ToUInt32 ( reader [ "inventoryNextPermissions" ] . ToString ( ) ) ;
item . parentFolderID = new libsecondlife . LLUUID ( ( string ) reader [ "parentFolderID" ] ) ;
item . type = Convert . ToInt32 ( reader [ "type" ] . ToString ( ) ) ;
rows . Add ( item ) ;
2007-05-31 14:05:19 +00:00
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
}
}
return rows ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Inserts a new row into the log database
/// </summary>
/// <param name="serverDaemon">The daemon which triggered this event</param>
/// <param name="target">Who were we operating on when this occured (region UUID, user UUID, etc)</param>
/// <param name="methodCall">The method call where the problem occured</param>
/// <param name="arguments">The arguments passed to the method</param>
/// <param name="priority">How critical is this?</param>
/// <param name="logMessage">Extra message info</param>
/// <returns>Saved successfully?</returns>
2007-05-28 21:55:50 +00:00
public bool insertLogRow ( string serverDaemon , string target , string methodCall , string arguments , int priority , string logMessage )
{
2007-05-28 23:32:05 +00:00
string sql = "INSERT INTO logs (`target`, `server`, `method`, `arguments`, `priority`, `message`) VALUES " ;
2007-05-28 21:55:50 +00:00
sql + = "(?target, ?server, ?method, ?arguments, ?priority, ?message)" ;
Dictionary < string , string > parameters = new Dictionary < string , string > ( ) ;
parameters [ "?server" ] = serverDaemon ;
parameters [ "?target" ] = target ;
parameters [ "?method" ] = methodCall ;
parameters [ "?arguments" ] = arguments ;
parameters [ "?priority" ] = priority . ToString ( ) ;
parameters [ "?message" ] = logMessage ;
bool returnval = false ;
try
{
IDbCommand result = Query ( sql , parameters ) ;
if ( result . ExecuteNonQuery ( ) = = 1 )
returnval = true ;
result . Dispose ( ) ;
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
return false ;
}
return returnval ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Inserts a new item into the database
/// </summary>
/// <param name="item">The item</param>
/// <returns>Success?</returns>
2007-06-01 18:58:20 +00:00
public bool insertItem ( InventoryItemBase item )
{
string sql = "REPLACE INTO inventoryitems (inventoryID, assetID, type, parentFolderID, avatarID, inventoryName, inventoryDescription, inventoryNextPermissions, inventoryCurrentPermissions) VALUES " ;
sql + = "(?inventoryID, ?assetID, ?type, ?parentFolderID, ?avatarID, ?inventoryName, ?inventoryDescription, ?inventoryNextPermissions, ?inventoryCurrentPermissions)" ;
Dictionary < string , string > parameters = new Dictionary < string , string > ( ) ;
parameters [ "?inventoryID" ] = item . inventoryID . ToStringHyphenated ( ) ;
parameters [ "?assetID" ] = item . assetID . ToStringHyphenated ( ) ;
parameters [ "?type" ] = item . type . ToString ( ) ;
parameters [ "?parentFolderID" ] = item . parentFolderID . ToStringHyphenated ( ) ;
parameters [ "?avatarID" ] = item . avatarID . ToStringHyphenated ( ) ;
parameters [ "?inventoryName" ] = item . inventoryName ;
parameters [ "?inventoryDescription" ] = item . inventoryDescription ;
parameters [ "?inventoryNextPermissions" ] = item . inventoryNextPermissions . ToString ( ) ;
parameters [ "?inventoryCurrentPermissions" ] = item . inventoryCurrentPermissions . ToString ( ) ;
bool returnval = false ;
try
{
IDbCommand result = Query ( sql , parameters ) ;
if ( result . ExecuteNonQuery ( ) = = 1 )
returnval = true ;
result . Dispose ( ) ;
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
return false ;
}
return returnval ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Inserts a new folder into the database
/// </summary>
/// <param name="folder">The folder</param>
/// <returns>Success?</returns>
2007-06-01 18:58:20 +00:00
public bool insertFolder ( InventoryFolderBase folder )
{
string sql = "REPLACE INTO inventoryfolders (folderID, agentID, parentFolderID, folderName) VALUES " ;
sql + = "(?folderID, ?agentID, ?parentFolderID, ?folderName)" ;
Dictionary < string , string > parameters = new Dictionary < string , string > ( ) ;
parameters [ "?folderID" ] = folder . folderID . ToStringHyphenated ( ) ;
parameters [ "?agentID" ] = folder . agentID . ToStringHyphenated ( ) ;
parameters [ "?parentFolderID" ] = folder . parentID . ToStringHyphenated ( ) ;
parameters [ "?folderName" ] = folder . name ;
bool returnval = false ;
try
{
IDbCommand result = Query ( sql , parameters ) ;
if ( result . ExecuteNonQuery ( ) = = 1 )
returnval = true ;
result . Dispose ( ) ;
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
return false ;
}
return returnval ;
}
2007-06-02 00:37:31 +00:00
/// <summary>
/// Inserts a new region into the database
/// </summary>
/// <param name="profile">The region to insert</param>
/// <returns>Success?</returns>
public bool insertRegion ( SimProfileData regiondata )
2007-05-13 14:59:24 +00:00
{
string sql = "REPLACE INTO regions (regionHandle, regionName, uuid, regionRecvKey, regionSecret, regionSendKey, regionDataURI, " ;
2007-05-05 23:04:47 +00:00
sql + = "serverIP, serverPort, serverURI, locX, locY, locZ, eastOverrideHandle, westOverrideHandle, southOverrideHandle, northOverrideHandle, regionAssetURI, regionAssetRecvKey, " ;
2007-05-25 07:35:23 +00:00
sql + = "regionAssetSendKey, regionUserURI, regionUserRecvKey, regionUserSendKey, regionMapTexture) VALUES " ;
2007-05-05 23:04:47 +00:00
2007-05-13 14:59:24 +00:00
sql + = "(?regionHandle, ?regionName, ?uuid, ?regionRecvKey, ?regionSecret, ?regionSendKey, ?regionDataURI, " ;
sql + = "?serverIP, ?serverPort, ?serverURI, ?locX, ?locY, ?locZ, ?eastOverrideHandle, ?westOverrideHandle, ?southOverrideHandle, ?northOverrideHandle, ?regionAssetURI, ?regionAssetRecvKey, " ;
2007-05-25 07:35:23 +00:00
sql + = "?regionAssetSendKey, ?regionUserURI, ?regionUserRecvKey, ?regionUserSendKey, ?regionMapTexture);" ;
2007-05-13 14:59:24 +00:00
Dictionary < string , string > parameters = new Dictionary < string , string > ( ) ;
2007-06-02 00:37:31 +00:00
parameters [ "?regionHandle" ] = regiondata . regionHandle . ToString ( ) ;
parameters [ "?regionName" ] = regiondata . regionName . ToString ( ) ;
parameters [ "?uuid" ] = regiondata . UUID . ToStringHyphenated ( ) ;
parameters [ "?regionRecvKey" ] = regiondata . regionRecvKey . ToString ( ) ;
parameters [ "?regionSecret" ] = regiondata . regionSecret . ToString ( ) ;
parameters [ "?regionSendKey" ] = regiondata . regionSendKey . ToString ( ) ;
parameters [ "?regionDataURI" ] = regiondata . regionDataURI . ToString ( ) ;
parameters [ "?serverIP" ] = regiondata . serverIP . ToString ( ) ;
parameters [ "?serverPort" ] = regiondata . serverPort . ToString ( ) ;
parameters [ "?serverURI" ] = regiondata . serverURI . ToString ( ) ;
parameters [ "?locX" ] = regiondata . regionLocX . ToString ( ) ;
parameters [ "?locY" ] = regiondata . regionLocY . ToString ( ) ;
parameters [ "?locZ" ] = regiondata . regionLocZ . ToString ( ) ;
parameters [ "?eastOverrideHandle" ] = regiondata . regionEastOverrideHandle . ToString ( ) ;
parameters [ "?westOverrideHandle" ] = regiondata . regionWestOverrideHandle . ToString ( ) ;
parameters [ "?northOverrideHandle" ] = regiondata . regionNorthOverrideHandle . ToString ( ) ;
parameters [ "?southOverrideHandle" ] = regiondata . regionSouthOverrideHandle . ToString ( ) ;
parameters [ "?regionAssetURI" ] = regiondata . regionAssetURI . ToString ( ) ;
parameters [ "?regionAssetRecvKey" ] = regiondata . regionAssetRecvKey . ToString ( ) ;
parameters [ "?regionAssetSendKey" ] = regiondata . regionAssetSendKey . ToString ( ) ;
parameters [ "?regionUserURI" ] = regiondata . regionUserURI . ToString ( ) ;
parameters [ "?regionUserRecvKey" ] = regiondata . regionUserRecvKey . ToString ( ) ;
parameters [ "?regionUserSendKey" ] = regiondata . regionUserSendKey . ToString ( ) ;
parameters [ "?regionMapTexture" ] = regiondata . regionMapTextureID . ToStringHyphenated ( ) ;
2007-05-05 23:04:47 +00:00
bool returnval = false ;
try
{
2007-05-13 14:59:24 +00:00
2007-05-05 23:04:47 +00:00
IDbCommand result = Query ( sql , parameters ) ;
2007-05-13 14:59:24 +00:00
//Console.WriteLine(result.CommandText);
2007-05-05 23:04:47 +00:00
if ( result . ExecuteNonQuery ( ) = = 1 )
returnval = true ;
result . Dispose ( ) ;
}
catch ( Exception e )
{
2007-05-13 14:59:24 +00:00
Console . WriteLine ( e . ToString ( ) ) ;
2007-05-05 23:04:47 +00:00
return false ;
}
return returnval ;
}
2007-05-04 03:25:20 +00:00
}
}