Internationalization .dlls for System.Data.Linq;

I have a unity based server communicating with a SQL database using LinqToSQL. It works perfectly from the editor, but not when the server is built as a standalone player. I know that normally when communicating with SQL directly from unity, you need the dll’s:
I18N.dll and I18N.West.dll. I’ve included both of these in my plugins folder and am using them at the top of my script but It’s not making a difference. I’ve tried a bunch of the I18N.dll files from the unity folder but nothing seems to work. Does anyone have any ideas?

Heres the namespaces i’m using(not including the I18N files):

using System;
using System.Linq;
using System.Data.Linq;
using System.Data.Linq.Mapping;

Well I decided to switch over to just plain SQL. LinqToSQL from within unity would be pretty cool though, so if anyone has any ideas feel free to share