Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

SQL_連線字串.vb 780B

1234567891011
  1. Module SQL_連線字串
  2. Friend Sub SQL_連線字串_測試()
  3. ConString = "Data Source=" & 登入人IP & ";Initial Catalog=METO-MES-SYS;Persist Security Info=True;User ID=B70340;Password=Lee0911274990;Max pool size = 200;Connection Timeout=0"
  4. End Sub
  5. Friend Sub SQL_連線字串_正式()
  6. ConString = "Data Source=" & 登入人IP & ";Initial Catalog=METO-MES-SYS;Persist Security Info=True;User ID=b70340;Password=0911274990;Max pool size = 200;Connection Timeout=0"
  7. End Sub
  8. Friend Sub SQL_連線字串_圖片資料庫()
  9. ConString2 = "Data Source=" & 登入人IP & ";Initial Catalog=" & 圖片庫 & ";Persist Security Info=True;User ID=b70340;Password=" & SQL密碼 & ";Max pool size = 200;Connection Timeout=0"
  10. End Sub
  11. End Module