I need to add column to table, for now I have this code:
public void InsertParameter(string ColumnName)
{
    string sql = "ALTER TABLE table_name ADD :value1";
    SQLiteCommand cmd = new SQLiteCommand(sql,conn);
    cmd.Parameters.AddWithValue("value1", ColumnName);
    cmd.ExecuteNonQuery();
}
But this give me syntax error:
near ":value1":syntax error
I really can't figure out what is wrong with this query?
 
     
    