Development Articles
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsOtherDevelopment Articles

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 2nd, 1999, 07:33 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Assumptions!!!

What are assumptions? You are wrong when you think that people should be assumed to know something about mysql. You are definately one of the uneducated people if you think you people must be assumed to know something that they are trying to learn. Too bad for you. You guys have lost the understanding of how teach.

Too Bad!

Reply With Quote
  #2  
Old April 2nd, 1999, 10:43 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Apologies

You are correct. The mysql introduction tutorial has not yet been moved to the new site. Watch for it early next week. We hope to have it updated for the latest MySQL version by then.

Reply With Quote
  #3  
Old April 3rd, 1999, 02:00 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Back up!

The beginning tutorial is back up. Let me know if you see any problems with it.

Thanks,

Randy

Reply With Quote
  #4  
Old April 9th, 1999, 01:26 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
RE: Assumptions!!!

That's hardly fair - the article doesn't claim to be a beginner's tutorial on MySQL, but an exploration of how the grant tables work. You don't expect someone to be able to understand differential equations before they take calculus. For the same reason, you shouldn't expect to be able to understand how the grant tables work before you have a working knowledge of MySQL.

Reply With Quote
  #5  
Old April 14th, 1999, 10:01 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Back up!

I am new with MySql. Would like to know more information how to backup and monitor and maybe with the reporting MySql server. Any helps will be appreciated.

Reply With Quote
  #6  
Old June 30th, 1999, 10:07 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Grant table does not work

I got problem setting up grant table:
<br>
I created database named webmail
<br>
User table: Host=%;User=webmail;Password=pwd
<br>
DB table: host=%;User=webmail;db=webmail
<br>
Host table: host=%;user=%
<br>
<br>
It denies everyone accessing to "webmail" database. Any idea ?
<br>
Thanks,
<br>
Steve
<br>
<br>

Reply With Quote
  #7  
Old July 8th, 1999, 10:52 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Back up!

Yep, don\'t blaim eachothers..


Reply With Quote
  #8  
Old July 8th, 1999, 10:53 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Back up!

ok, thanks!

Reply With Quote
  #9  
Old July 8th, 1999, 04:20 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Grant table does not work

Yeah, first you have to store the password in encrypted format, not plain text. Second, depending on how your host's domain name service is set up, you may need to have two entries, one for host='localhost' and one for host=whatever_your_hostname_is. I haven't figured out the latter but did get things working by adding two rows for each user.
<br>
<br>
To get the encrypted password, use the password() function. For example:
<br>
<br>
update user set password=password('mypassword') where user='myuser';
<br>
<br>
-rdj

Reply With Quote
  #10  
Old August 17th, 1999, 09:36 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Testing SQL

this is a test of the SQL DB

Reply With Quote
  #11  
Old September 17th, 1999, 12:57 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Assumptions!!!

Also for an introduction to MySQL you can view DevShed's <a href=http://www.devshed.com/Server_Side/MySQL/Intro/>"Beginning MySQL" tutorial</a>

Reply With Quote
  #12  
Old January 13th, 2000, 09:52 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Mysql Connect String

How to change the connect string of mysql database from localhost/unix socket to tcpip connection, so from remote machine i can access my mysql database.

Reply With Quote
  #13  
Old January 13th, 2000, 09:55 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Mysql installation problem

Whan i am trying to install mysql on a cobalt raq2 machine it's giving an error saying cannot execute binary files, daemon ended. What could be the problem and what is the solution for this?

Reply With Quote
  #14  
Old February 4th, 2000, 08:40 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Row-level access

MySQL privilege system doesn't seem to have any row-level restrictions. For example, I want customers to see information from a host table but I only want to see the hosts that have a customer ID matching their customer ID. From what I can see, the privilege system doesn't cater for this. Correct?

Mark

Reply With Quote
  #15  
Old February 18th, 2000, 09:41 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
security

My ISP dose not allow us to access the the grants table. They give us a user name and password to access the database. My question is how secure is it to use these in my script?? I want to allow people to search the data base but not allow then to change or deleat anything. If I place the password and username in the script and someone manages to see the script they will be able to use it to connect and destroy any information in the database. Please help!

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDevelopment Articles > The MySQL Grant Tables

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap