filmov
tv
How to connect to MySQL Server in vb.net | MalluCoder
Показать описание
(എങ്ങനെ MySQL സെര്വറുമായി കണക്ട് ചെയ്യാം)
MySQL Connection Strings:
Standard:- Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Specifying TCP port:-
Server=myServerAddress;Port=1234;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
The port 3306 is the default MySql port.
The value is ignored if Unix socket is used.
Multiple servers:-
Use this to connect to a server in a replicated server configuration without concern on which server to use.
Server=serverAddress1, serverAddress2, serverAddress3;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
MySQL Connection Strings:
Standard:- Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Specifying TCP port:-
Server=myServerAddress;Port=1234;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
The port 3306 is the default MySql port.
The value is ignored if Unix socket is used.
Multiple servers:-
Use this to connect to a server in a replicated server configuration without concern on which server to use.
Server=serverAddress1, serverAddress2, serverAddress3;Database=myDataBase;Uid=myUsername;Pwd=myPassword;