aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices
diff options
context:
space:
mode:
authorAdam Frisby2007-05-25 07:57:41 +0000
committerAdam Frisby2007-05-25 07:57:41 +0000
commit8c536efedabc169d27ee543a1e17b3ca599ec90b (patch)
treeab0c7ff9e9c99fb8d78426f692909933de259a09 /OpenGridServices
parentAdded regionMapTexture to SQL/mysql-regions.sql for MySQL (diff)
downloadopensim-SC_OLD-8c536efedabc169d27ee543a1e17b3ca599ec90b.zip
opensim-SC_OLD-8c536efedabc169d27ee543a1e17b3ca599ec90b.tar.gz
opensim-SC_OLD-8c536efedabc169d27ee543a1e17b3ca599ec90b.tar.bz2
opensim-SC_OLD-8c536efedabc169d27ee543a1e17b3ca599ec90b.tar.xz
Set default MySQL port to the standard.
Diffstat (limited to 'OpenGridServices')
-rw-r--r--OpenGridServices/OpenGrid.Framework.Data.MySQL/MySQLManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data.MySQL/MySQLManager.cs b/OpenGridServices/OpenGrid.Framework.Data.MySQL/MySQLManager.cs
index aec23d1..670d3c9 100644
--- a/OpenGridServices/OpenGrid.Framework.Data.MySQL/MySQLManager.cs
+++ b/OpenGridServices/OpenGrid.Framework.Data.MySQL/MySQLManager.cs
@@ -29,7 +29,7 @@ namespace OpenGrid.Framework.Data.MySQL
29 { 29 {
30 try 30 try
31 { 31 {
32 string connectionString = "Server=" + hostname + ";Port=13306;Database=" + database + ";User ID=" + username + ";Password=" + password + ";Pooling=" + cpooling + ";"; 32 string connectionString = "Server=" + hostname + ";Port=3306;Database=" + database + ";User ID=" + username + ";Password=" + password + ";Pooling=" + cpooling + ";";
33 dbcon = new MySqlConnection(connectionString); 33 dbcon = new MySqlConnection(connectionString);
34 34
35 dbcon.Open(); 35 dbcon.Open();