Try,
DELETE * FROM TABBLE WHERE FIELD1 LIKE 'A%'
| I just remembered after I saw your replies- that is a sign I'm getting old
| for this
| Thank you all,
|
| "Phill. W" wrote:
|
| > | > > If I run it inside the Access, it deletes with no problem, but when I
| > > call it from vb.net(oledb), it doesn't delete any records and I don't
| > > get any errors.
| >
| > > DELETE FROM TABBLE WHERE FIELD1 LIKE 'A*'
| >
| > You don't get an error because this statement is successfully deleting
| > zero rows. There aren't any rows in in TABBLE where FIELD1
| > contains the value "Ayy asterisk".
| > The wildcard character for OLEDB is "%", not "*". Try
| >
| > DELETE FROM TABBLE WHERE FIELD1 LIKE 'A%'
| >
| > instead.
| >
| > HTH,
| > Phill W.
| >
| >
| >