View Single Post
  #5  
Old 11-07-2004, 04:49 AM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by mrea
the problem is your 'attuneable' column, it doesn't want to recognize it. I think there was a post about this before that may help you
Not quite.
Code:
 Unknown column 'attuneable' 
in 'field list'
It's looking for it and cannot find it.

ALTER TABLE items ADD COLUMN `attuneable` tinyint(3) unsigned NOT NULL default '0';
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
Reply With Quote