This is the step to connect the Everything Engine to the Database - has anyone ran into this error before? we are totally stumped here - we have created the database and can connect to it as the specified user we created as per the Everything docs - does something need to be hacked in NodeBase.pm?? - any help would be mucho appreciated!!
ps - the table exists we can connect to it from MySQL command center client
here is the spot where it bombs but I am not sure what to call these three fields??
my $csr = $this->sqlSelectMany('title', "node", "type_nodetype=1");
while ($_ = $csr->fetchrow_hashref) {
my $found = 0;
my $name = $$_{title};
$name =~ s/\W//g;
my $inc_name = "Everything/Node/$name.pm";
my $modname = "Everything::Node::$name";
foreach my $lib (@INC) {
if (-e "$lib/$inc_name") {
$found = 1;
last;
sh-2.05b# ./nbmasta -h localhost -u web -p web import /usr/local/everything everything
DBD::mysql::st execute failed: Table 'everything.node' doesn't exist at /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/Everything/NodeBase.pm line 380.
Can't call method "fetchrow_hashref" on an undefined value at /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/Everything/NodeBase.pm line 205.
Jeffery