Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP] Adding furni.
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="cammy" data-source="post: 449042" data-attributes="member: 46853"><p>Ok so you have your furniture table and it looks like this...</p><p></p><p>(EXAMPLE)</p><p>id item_name public_name width length height sprite</p><p>1 duck Rubber Duck 1 1 1 1</p><p></p><p>You try running a query like such...</p><p>INSERT INTO `furniture` VALUES ('2', 'throne', 'Throne', '1', '1', '1');</p><p></p><p>It returns the error that the column count doesn't match...</p><p></p><p>You then realise that it's missing data for one of the columns and fix it.</p><p>INSERT INTO `furniture` VALUES ('2', 'throne', 'Throne', '1', '1', '1', '2');</p><p></p><p>You run it and it works.</p><p></p><p>-</p><p></p><p>If you could provide your table structure and the SQL's your trying to add I'll explain what's missing.</p></blockquote><p></p>
[QUOTE="cammy, post: 449042, member: 46853"] Ok so you have your furniture table and it looks like this... (EXAMPLE) id item_name public_name width length height sprite 1 duck Rubber Duck 1 1 1 1 You try running a query like such... INSERT INTO `furniture` VALUES ('2', 'throne', 'Throne', '1', '1', '1'); It returns the error that the column count doesn't match... You then realise that it's missing data for one of the columns and fix it. INSERT INTO `furniture` VALUES ('2', 'throne', 'Throne', '1', '1', '1', '2'); You run it and it works. - If you could provide your table structure and the SQL's your trying to add I'll explain what's missing. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP] Adding furni.
Top