Raised This Month: $ Target: $400
 0% 

SQL Structure?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
rjckE
Junior Member
Join Date: Mar 2009
Old 11-09-2010 , 01:48   SQL Structure?
Reply With Quote #1

Hello guys. I was reading some of sql in amxx and i have some questions.

What should be the structure for the table "admins" for the admins?

I know that insert is like

Code:
INSERT INTO admins VALUES("STEAM_0:1:23456", "", "abcdefghijklmnopqrstu", "ce");
So table Admins must have SteamID, Password, Privilegies and Flags attributes, but how should i name them? Does the name of the table's attributes matter? And what about type (text, varchar, int, etc)??

Thanks for your replies!
__________________
rjckE is offline
Send a message via MSN to rjckE
undrex
Junior Member
Join Date: Jan 2008
Location: Sweden
Old 11-09-2010 , 02:44   Re: SQL Structure?
Reply With Quote #2

Code:
CREATE  TABLE  `admins` ( `id` INT NOT  NULL  AUTO_INCREMENT  PRIMARY  KEY ,
 `steamid` VARCHAR( 64  )  NULL  DEFAULT NULL ,
 `password` VARCHAR( 64  )  NULL  DEFAULT NULL ,
 `privilegies` VARCHAR( 64  )  NULL  DEFAULT NULL ,
 `flags` VARCHAR( 64  )  NULL  DEFAULT NULL 
) ENGINE  =  MYISAM ;
undrex is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 11-09-2010 , 03:16   Re: SQL Structure?
Reply With Quote #3

The SQL version of admin.amxx automatically creates the table for you.
Here is the query it uses:

CREATE TABLE IF NOT EXISTS `%s`
( `auth` VARCHAR( 32 ) NOT NULL,
`password` VARCHAR( 32 ) NOT NULL,
`access` VARCHAR( 32 ) NOT NULL,
`flags` VARCHAR( 32 ) NOT NULL )
COMMENT = 'AMX Mod X Admins'

Where '%s' is the value of the cvar amx_sql_table.
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
rjckE
Junior Member
Join Date: Mar 2009
Old 11-09-2010 , 19:29   Re: SQL Structure?
Reply With Quote #4

Aw, thanks so much for the info guys! I thought i had to create manually the table!

Thanks a lot
__________________
rjckE is offline
Send a message via MSN to rjckE
Reply



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 On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:42.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode