The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Database Query / Creating Tables
i just made this:
https://vborg.vbsupport.ru/showthread.php?t=117724 Can any1 Help me with the Table & Colums needs to be created? |
#2
|
||||
|
||||
That code doesn't even look like it works... I don't even know what it's supposed to do...
That said all we know about the table is from here: Code:
INSERT INTO vb_linklist (name,link,kategorie) I assume it should have some type of unique index as well even though it is not used in the code. If you're going to create the queury in PHP (such as mod install code) you need to account for the table prefix, if you're just creating it yourself in phpmyadmin just fill it in yourself. In PHP use this query: PHP Code:
If doing your own direct query- Code:
CREATE TABLE `linklist` ( `id` int( 11 ) NOT NULL auto_increment , `name` varchar( 255 ) NOT NULL , `link` varchar( 2000 ) NOT NULL , `kategorie` text NOT NULL , PRIMARY KEY ( `id` ) ) ; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|