暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SQL_CommString.cs 761B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class SQL_CommString : MonoBehaviour
  5. {
  6. public static void SQL_連線字串_正式_SQL(string ser)
  7. {
  8. SQL_Module.ConString = "server=" + ser + ",4567;database=小農日記;uid=b70340;pwd=Lee0911274990;Connect Timeout=5";
  9. }
  10. public static void SQL_連線字串_圖片_SQL(string ser1, string ser)
  11. {
  12. SQL_Module.ConString1 = "server=" + ser1 + ",4567;database=" + ser + ";uid=b70340;pwd=Lee0911274990;Connect Timeout=5";
  13. }
  14. public static void SQL_連線字串_錄音_SQL(string ser1,string ser)
  15. {
  16. SQL_Module.ConString2 = "server=" + ser1 + ",4567;database=" + ser + ";uid=b70340;pwd=Lee0911274990;Connect Timeout=5";
  17. }
  18. }