Why will this "or" staement not work in VB/SQL ADO



How do you use the "like / OR" statement in ADO? When I use one
criteria (line 4), it runs fine



sqlstring = "select BusinessName, BusinessID " _
& "from mars.dbo.mroActiveRollups " _
& "where BusinessDate = '4/30/2007' " _
& "AND businessline like '%WB_TREAS' or '%WB_CMG' " _
& "AND rollupID= 2 " _
& "ORDER BY businessline "

.