Is it possible to get comments from table in database?

Posts   
 
    
dpblue
User
Posts: 4
Joined: 16-Feb-2024
# Posted on: 02-May-2024 04:05:02   

I want to get comment from columns in a table,is it possible to do it in LLBLGen?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39625
Joined: 17-Aug-2003
# Posted on: 02-May-2024 08:28:30   

dpblue wrote:

I want to get comment from columns in a table,is it possible to do it in LLBLGen?

You mean, obtain the comments/additional properties for a table / table fields in a schema? Yes you can do so, please make sure 'Update custom properties after relational model data sync' and 'Retrieve db custom properties' are set to true (checked) in project settings under Database first development under Entity model. We call them 'custom properties' as you can use them to drive code generation and also generate comments on the code elements mapped onto the elements which have custom properties.

Frans Bouma | Lead developer LLBLGen Pro
dpblue
User
Posts: 4
Joined: 16-Feb-2024
# Posted on: 02-May-2024 11:05:28   

Thanks!I will try it.