Ei kuvausta
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連線字串.vb 1.1KB

1234567891011121314151617
  1. Module SQL連線字串
  2. Sub WAN連線()
  3. connstring = "Data Source=triplez.net,1433;Password=Lafayette11;Persist Security Info=True;User ID=sa;Initial Catalog=rt2021;Max pool size = 200;Connection Timeout=60"
  4. End Sub
  5. Sub DDNS連線()
  6. connstring = "Data Source=r218605q29.iok.la,9999;Password=Lafayette11;Persist Security Info=True;User ID=sa;Initial Catalog=rt2021;Max pool size = 200;Connection Timeout=60"
  7. End Sub
  8. Sub 本機連線()
  9. connstring = "Data Source=127.0.0.1;Password=Lafayette11@;Persist Security Info=True;User ID=sa;Initial Catalog=rt2021;Max pool size = 200;Connection Timeout=60"
  10. End Sub
  11. Sub 內網IP連線()
  12. connstring = "Data Source=192.168.110.164;Password=Lee0911274990;Persist Security Info=True;User ID=b70340;Initial Catalog=rt2021;Max pool size = 200;Connection Timeout=60"
  13. End Sub
  14. Sub 台灣測試連線()
  15. connstring = "Data Source=106.1.49.218,2433;Password=Lee0911274990;Persist Security Info=True;User ID=b70340;Initial Catalog=rt2021;Max pool size = 200;Connection Timeout=60"
  16. End Sub
  17. End Module