Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }