Search and returns the index of the crequired column.

1 table.findColumnIndex

<table.findColumnIndex
    table='table'
    column='column'
/>

Exceptions

Database required.

Missing specify the database.

Required attribute [...]

A required attribute has not been informed.

Remarks

This function returns the value of the cache, so the first time that you use the table, the values of the metadata are load and stored in cache. It is difficult to get this information and thess values will not change unless a ddl operation occurs, it means an alteration of the physical model of the database, in which case is recommended to remove the corresponding caches through the function system.cache.clear, to obtain the real values.

Example

Print the ordinary index of the column capuntes.docser.

Copy
<xsql-script name='test_getColumnType'>
    <body>

        <println>
            <table.findColumnIndex table='capuntes' column='docser' />
        </println>
    </body>
</xsql-script>