using System.Collections; using System.Collections.Generic; using UnityEngine; public class SQL_CommString : MonoBehaviour { public static void SQL_連線字串_正式_SQL(string ser) { SQL_Module.ConString = "server=" + ser + ",4567;database=小農日記;uid=b70340;pwd=Lee0911274990;Connect Timeout=5"; } public static void SQL_連線字串_圖片_SQL(string ser1, string ser) { SQL_Module.ConString1 = "server=" + ser1 + ",4567;database=" + ser + ";uid=b70340;pwd=Lee0911274990;Connect Timeout=5"; } public static void SQL_連線字串_錄音_SQL(string ser1,string ser) { SQL_Module.ConString2 = "server=" + ser1 + ",4567;database=" + ser + ";uid=b70340;pwd=Lee0911274990;Connect Timeout=5"; } }