wxDbColInf
generated from ../src/mod_db/dbcolinf.cpp
Used with the getColumns for obtaining all retrievable information
about a column's definition.
wxDbColInf contains information of all columns of one or more tables. That's
why you need to use an index before retrieving the properties of a column.
var cols = db.getColumns("user_table");
if ( cols != null
&& cols.count > 0 )
{
// [0] is necessary to retrieve the name of the first column!!!
var colname = cols[0].colName;
}
Constants
Properties

© 2002 - 2007 Franky Braem.