Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组属于用户表的唯一 ID,例如。1478、8906、4677 等。现在如何使用 DataAdapter 获取包含这些用户的完整记录集的 DataSet?
如果您在字符串变量中有 Id 并以逗号分隔,那么您可以执行以下操作,例如,如果您使用的是 SQL Server
SqlDataAdpater apd=new SqlDataAdapter("Select * from Users where UserId in("+users+")",new sqlconnection("connection info") DataSet ds=new DataSet() adp.fill(ds)
whereusers是一个变量,其中包含Id逗号分隔格式的 's列表
users
Id