Delete row

  • Thread starter Thread starter PawelR
  • Start date Start date
P

PawelR

Hello Group,
In my apps I connect to MS Access database (*.mdb) and read one table (all
column). How delete all rows in *.mdb from this table.
thx
PawelR
 
PawelR said:
In my apps I connect to MS Access database (*.mdb) and read one table (all
column). How delete all rows in *.mdb from this table.

Just execute the SQL statement "DELETE FROM tablename" using the ADO.NET
function System.Data.SqlClient.SqlCommand.ExecuteNonQuery().

-- Alan
 
Back
Top