Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ODBC を使用して同じマシン上の MySQL データベースに接続する方法は知っていますが、ネットワークを介して別のサーバー上の MySQL データベースに接続する方法を知りたいと思っています。
Server=接続文字列の後に、データベース コンピューターの名前または IP アドレスを記述します。例えば:
Server=
Driver={MySQL ODBC 5.1 Driver};Server=myServerAddress;Database=myDataBase;User=myUsername; Password=myPassword;Option=3;
その他の例はこちらhttp://www.connectionstrings.com/mysql#p31