- ServUO Version
- Publish 57
- Ultima Expansion
- Mondain's Legacy
Hi everyone,
I'm setting up a ServUO server on Windows and I need to manually install MySQL instead of using an installer. I'm planning to use it for a web integration to display character data, online players,monster kill statistics,and more...
I've tried looking up some guides, but most of them focus on using the installer. I want to do a manual installation (downloading the ZIP archive, setting up the service, and configuring everything myself).
Could someone guide me through the process or point me to a reliable step-by-step tutorial?
Any help would be greatly appreciated! Thanks in advance.
(Tryed without results,i read about System.Linq too,created a small table using C# and works,but i need MySQL to get a real database to load some specific infos from a table i will create when the service get installed.)
When tryed to install it with this custom script loader:
The test script im using to see if connection is stablished is saying the sql dll is not foun,so missig references.
I'm setting up a ServUO server on Windows and I need to manually install MySQL instead of using an installer. I'm planning to use it for a web integration to display character data, online players,monster kill statistics,and more...
I've tried looking up some guides, but most of them focus on using the installer. I want to do a manual installation (downloading the ZIP archive, setting up the service, and configuring everything myself).
Could someone guide me through the process or point me to a reliable step-by-step tutorial?
Any help would be greatly appreciated! Thanks in advance.
(Tryed without results,i read about System.Linq too,created a small table using C# and works,but i need MySQL to get a real database to load some specific infos from a table i will create when the service get installed.)
When tryed to install it with this custom script loader:
C#:
using System;
using System.IO;
using System.Reflection;
public class MySQLLoader
{
public static void Initialize()
{
string dllPath = Path.Combine(Core.BaseDirectory, "References/MySql.Data.dll");
if (File.Exists(dllPath))
{
Assembly.LoadFrom(dllPath);
Console.WriteLine("MySQL Connector Loaded Successfully.");
}
else
{
Console.WriteLine("ERROR: MySql.Data.dll not found in References folder.");
}
}
}
C#:
using System;
using MySql.Data.MySqlClient; // This should now work
public class SQL
{
private static string connectionString = "Server=127.0.0.1;Database=servuo_db;User ID=servuo_user;Password=yourpassword;";
public static MySqlConnection GetConnection()
{
MySqlConnection connection = new MySqlConnection(connectionString);
try
{
connection.Open();
Console.WriteLine("Connected to MySQL Database!");
}
catch (Exception ex)
{
Console.WriteLine("MySQL Connection Error: " + ex.Message);
}
return connection;
}
}
Last edited: