KhArtNJava / MySQLConnectorUE4Plugin

MySQL Database Connector Plugin for Unreal Engine 4
MIT License
75 stars 71 forks source link

To isolate all game code under #if WITH_SERVER directives to make sure this code will not be sitting in client's desktop ever #1

Open KhArtNJava opened 7 years ago

KhArtNJava commented 7 years ago

...I think maybe a second layer of code between server and database is still safest way instead of giving your server exe direct SQL access. Using this you will have to make sure to isolate all game code under #if WITH_SERVER directives to make sure this code will not be sitting in client's desktop ever.... https://forums.unrealengine.com/showthread.php?120792-MySQL-Connector-UE4-Plugin-is-available-for-all-now&p=583731&viewfull=1#post583731

gwythaint commented 7 years ago

Good idea.