Specifyiing a SQL attribute

Posts   
 
    
timbered
User
Posts: 45
Joined: 09-Feb-2020
# Posted on: 24-Mar-2020 08:08:44   

Greetings!

Using version 5.6.2

Is there a way I can specify, in the designer, attributes to be used on a column in the generated DDL script?

My generated script is:

CREATE TABLE [dbo].[Photo] 
(
    [Jpg] [varbinary](MAX) NULL, 
    [Id] [uniqueidentifier] NOT NULL 
)
GO

but what I want is:

CREATE TABLE [dbo].[Photo] 
(
    [Jpg] [varbinary](MAX) FILESTREAM NULL, 
    [Id] [uniqueidentifier] ROWGUIDCOL NOT NULL UNIQUE
)
GO

(Yes, I know about the work-around in Llblgen for using FILESTREAM. But here, I just want to create it.)

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39614
Joined: 17-Aug-2003
# Posted on: 24-Mar-2020 09:10:53   

This isn't possible at the moment. We'll add a workitem for it for a future version simple_smile

Frans Bouma | Lead developer LLBLGen Pro
timbered
User
Posts: 45
Joined: 09-Feb-2020
# Posted on: 24-Mar-2020 09:15:42   

Bummer for now, but Ooo cool! in the future then.

Thanks for the answer!