Hi,
Could any body tell me the proper way to find a table
whether it exists or not.
I use code:

OleDbConnection dbConnection = new OleDbConnection(ConnectionString);
string InsertQuery = "CREATE TABLE Processed (Cod INTEGER, ProcessDate DATETIME)";
OleDbCommand dbCreateCommand = new OleDbCommand(InsertQuery, dbConnection);
dbDeggyConnection.Open();
dbCreateCommand.ExecuteNonQuery();

But, if table already exist I get an error.
Thx in advance.