P
Pablo Nogues
Hi, i´ve a method that expects a string parameter (table name to drop ) in
CF 3.5 C#, that returns error. My code is:
...........//
cmd.CommandText = "Delete @Table" ;
cmd.CommandType = System.Data.CommandType.Text;
cmd.Parameters.AddWithValue("@Table", table);
-------------//
My cuestion is why i can´t call in this way ?
Thanks in advanced.
CF 3.5 C#, that returns error. My code is:
...........//
cmd.CommandText = "Delete @Table" ;
cmd.CommandType = System.Data.CommandType.Text;
cmd.Parameters.AddWithValue("@Table", table);
-------------//
My cuestion is why i can´t call in this way ?
Thanks in advanced.