Dynamic Tables @ Runtime

Posts   
 
    
BSAPD avatar
BSAPD
User
Posts: 42
Joined: 02-Jul-2004
# Posted on: 08-Jul-2004 00:17:00   

I have an application that will create tables dynamically at runtime. Is there some way I can use LLBLGen objects for these disappointed or am I on my own with this? cry

Also, does LLBLGen support SQL Server 2000 Image Data Type? confused

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39614
Joined: 17-Aug-2003
# Posted on: 08-Jul-2004 09:32:33   

BSAPD wrote:

I have an application that will create tables dynamically at runtime. Is there some way I can use LLBLGen objects for these disappointed or am I on my own with this? cry

It depends on how your dynamic tables look like. If you can use a generic entity which is mapped on a dynamic table and all dynamic tables have the same table layout, you can modify persistence information at runtime (easier in SelfServicing). If your dynamic tables have different layouts each time, it's not possible.

Also, does LLBLGen support SQL Server 2000 Image Data Type? confused

Of course. All types are supported.

Frans Bouma | Lead developer LLBLGen Pro
BSAPD avatar
BSAPD
User
Posts: 42
Joined: 02-Jul-2004
# Posted on: 08-Jul-2004 16:48:14   

Ok, Thanks.