If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Explain the difference between use and require.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-17-10, 16:11
ali0482 ali0482 is offline
Registered User
 
Join Date: Aug 2010
Posts: 2
Explain the difference between use and require.

Explain the difference between use and require.
Reply With Quote
  #2 (permalink)  
Old 08-17-10, 16:16
shammat shammat is offline
Registered User
 
Join Date: Nov 2003
Posts: 2,407
http://www.merriam-webster.com/dictionary/require
http://www.merriam-webster.com/dictionary/use
Reply With Quote
  #3 (permalink)  
Old 08-17-10, 16:17
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
Quote:
Originally Posted by ali0482 View Post
Explain the difference between use and require.
USE is a mysql command to choose which database you want subsequent SQL statements to work in
Code:
USE pr0nstars;
REQUIRE is an option on the mysql GRANT command
Code:
GRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...
    ON {tbl_name | * | *.* | db_name.*}
    TO user [IDENTIFIED BY [PASSWORD] 'password']
        [, user [IDENTIFIED BY [PASSWORD] 'password']] ...
    [REQUIRE
        NONE |
        [{SSL| X509}]
        [CIPHER 'cipher' [AND]]
        [ISSUER 'issuer' [AND]]
        [SUBJECT 'subject']]
    [WITH [GRANT OPTION | MAX_QUERIES_PER_HOUR count |
                          MAX_UPDATES_PER_HOUR count |
                          MAX_CONNECTIONS_PER_HOUR count |
                          MAX_USER_CONNECTIONS count]]
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On