in reply to Simple Select Query

try
my $sqlstatement='SELECT * FROM "MPCCA ALL INVENTORY" WHERE Type Equip +ment = '.$dbh->quote('Computer');
(people will say to use bind params... listen to them)

Replies are listed 'Best First'.
Re^2: Simple Select Query
by bkiahg (Pilgrim) on Jul 06, 2005 at 22:00 UTC
    Thank you!

    my $sqlstatement='SELECT * FROM "MPCCA ALL INVENTORY" WHERE "Type Equipment" = '.$dbh->quote('Computer');

    Worked!