那位大佬帮我看一下这个语法有什么错误呢

   OleDbConnection conn = CreateConnection(DatePath);
            string StrSql = " Select * form " + TableName + " where Name = '" + SelectName.Trim() + "'";
          
            OleDbCommand myCommand = new OleDbCommand(StrSql, conn);
            OleDbDataReader oldr = myCommand.ExecuteReader(); ;
 

有问题的,报错了吧:(form 写错了 应该是 from)

  string StrSql = " Select * from " + TableName + " where Name = '" + SelectName.Trim() + "'";