its just like yuki said...
you can use any database with a C# source... but you'll have to change the table names/fields inside the source... since it's defined for another database...
for example:
Code:
Client.UID = Reader.ReadUInt32("EntityUID");
using a 5095 db from binary servers would be:
Code:
Client.UID = Reader.ReadUInt32("id");//or "uid"
will just take some patience to update all... but its fine to go ^^