Correction
Frank Speiser wrote:
You can pervert this type of thing to see what's there:
my $columns = $freetds_dbh->selectall_hashref("EXEC sp_columns
$table", 'COLUMN_NAME');
foreach my $column (sort { $columns->{$a}{ORDINAL_POSITION} <=>
$columns->{$b}{ORDINAL_POSITION} } keys %{$columns}) {
print "$columns->{$column}{COLUMN_NAME}";
}
Do some looking around. Are all the columns there?
If you don't see what you expect in terms of columns to access the
column's value at some later point, then the problem might ---- NOT
---- be in DBIC.
--
Frank Speiser
CTO
TAKKLE, Inc.
212.792.5854 (work)
212.792.5859 (fax)
[EMAIL PROTECTED]
_______________________________________________
List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class
Wiki: http://dbix-class.shadowcatsystems.co.uk/
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
Searchable Archive: http://www.mail-archive.com/dbix-class@lists.rawmode.org/