please
Database
3
Posts
3
Posters
0
Views
1
Watching
-
how to change the permits on a data base in csharp
-
how to change the permits on a data base in csharp
-
how to change the permits on a data base in csharp
If you talk about how to grant and revoke permissions you can send it as sql statment to sql server
SqlCommand sqlCommand =new SqlCommand("GRANT SELECT ON authors TO xyz",yourConnection); sqlCommand.CommandType=CommandType.Text; sqlCommand.ExecuteNonQuery();
MCAD