Hi Sandra, > String sqlString = "SELECT card_type.str_card_fields FROM card_type > WHERE (((card_type.str_card_type=cardType));";
you are using 3 opening brackets and only 2 closing ones in your where condition. IMHO it would be correct SQL to write: "SELECT card_type.str_card_fields FROM card_type WHERE card_type.str_card_type=cardType;" instead, no need for brackets there. Regards Jan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
