newbie :: missing primarykey exception?
Dear All,
i'm really new to .net and using database. I use access database using OleDbconnection
I want to get a row from a table
DataRow targetRow=member.Rows.Find(new Object[]{userId)};
but i got exception "the table don't have primary key" , but i'm sure i have set the primary key when creating the table.
Please help..