How can I Pass a Table Name to SqlCommand?

后端 未结 2 1759
-上瘾入骨i
-上瘾入骨i 2020-12-19 19:32

I am trying to pass a table name as a parameter to my query through SqlCommand but it doesn\'t seems to be working. Here is my code;

SqlConnect         


        
2条回答
  •  长情又很酷
    2020-12-19 20:11

    SqlCommand.Parameters are supported for Data manipulation language operations not Data definition language operations.

    Even if you use DML, you can't parameterize your table names or column names etc.. You can parameterize only your values.

    Data manipulation language =

    SELECT ... FROM ... WHERE ...
    INSERT INTO ... VALUES ...
    UPDATE ... SET ... WHERE ...
    DELETE FROM ... WHERE ...
    

    Data definition language =

    CREATE TABLE ... 
    DROP TABLE ... ;
    ALTER TABLE ... ADD ... INTEGER;
    

    You can't use DROP statement with parameters.

    If you really have to use drop statement, you might need to use string concatenation on your SqlCommand. (Be aware about SQL Injection) You might need to take a look at the term called Dynamic SQL

    Also use using statement to dispose your SqlConnection and SqlCommand like;

    using(SqlConnection con = new SqlConnection(ConnectionString))
    using(SqlCommand cmd = con.CreateCommand())
    {
       cmd.CommandText = "drop table " + "SampleTable";
       con.Open()
       cmd.ExecuteNonQuery();
    }
    

提交回复
热议问题