Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I use MySQL WIN32 on a single PC (no network)?

Status
Not open for further replies.

THX1138

Programmer
Apr 24, 2001
3
US
I want to work at home on my laptop with MySQL. Can I set it up under Win/98 single user without a network connection? I have looked all around and can't find the answer.
 
Can you give me a clue as to where this is documented or how to set up MySQL in this way?
 
Yes Indeed,
It must be remember that there is no gui for MySQL by default but if you install MyODBC you will be able to connect to it from most win32 databases including Access and FoxPro and link you MySQL tables to the API of choice.
You can of course use the terminal access which is in the distro. just connect to localhost:3306 and follow the instructions given in the documentation. To put it simply RTFM
Fin.
 
Win98 DOES have a network. As does ANY computer that can connect to the internet directly. If you set NOTHING up, or you want the ULTIMATE in network security, just set it up as your default loopback IP:

127.0.0.1(aka localhost or [local] or LO or loopback)

That is a standard that ALL network CAPABLE systems have. Of course, if ANOTHER computer tries to connect to yours using 127.0.0.1, it will FAIL! Their computer will intercept it and try to connect locally.

BTW, 127.0.0.xxx will ALL go to the local system. 127.0.0.1 is just the only one setup by default.

BTW, accept the default port. Others will work, but the default will help in the future.

I set my own laptop up like this, and my website is copied to 127.0.0.3 on my computer. Nobody could connect to this from the internet, and it works fine for me.

Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top