OleDbCommand com = new OleDbCommand(sql,MyConn);
sql="Create table "+table_topic+" (DateAndTime DateTime default now(),TopicID  IDENTITY(1,1),Topic text(200),body memo,Isbest int default 0,Istop int default 0,Postuser Text(20),LastReply Text(20),Islocked int default 0,Expression Text(50))";
com.CommandText=sql;
com.ExecuteNonQuery();