I want to modify a table's structure with a method.
Please help how to write this method!
I've tried:
public void tableExpand(string tableName, string colName)
{
...................
dataCommand.CommandText =
"ALTER TABLE @tableName" +
"ADD @colName real";
SqlParameter tableParam = new SqlParameter();
tableParam .ParameterName = "@tableName";
tableParam .Value = tableName;
SqlParameter colParam = new SqlParameter();
colParam .ParameterName = "@colName";
colParam .Value = colName;
dataCommand.Parameters.Add(tableParam);
dataCommand.Parameters.Add(colParam);
.....................
}
But this isn't the right way :(
Loading
zsingPosted May 19, 2009, 6:04 AM
Ex: V(0.2 4.5 2.1 0.0 5.1 1.0........). This is a document vector, and its dimension would be, the no. of distinct words in a document collection.
ramuPosted May 19, 2009, 5:44 AM