|
From: Christian T. <ch...@sm...> - 2002-04-16 15:44:42
|
Hi Jeff,
I think the changes in MockResultSetMetaData are OK, I use now your
MockResultSetMetaData ...
The method:
public void addColumnNames(String[] allNames) {
if (allNames != null) {
for (int i = 0; i < allNames.length; i++) {
addColumnName(allNames[i]);
}
}
}
is also usefull because you can create a String[] with column names and
transfer it to MockResultSet and MockResultSetMetaData. We should use common
parameter types for this classes ...
Christian
|