Sunday, February 19, 2012

Default value for image column

HI All,
Does someone knows if it is possible to get a default value on a image column type!
Cheers WimHI All,

Does someone knows if it is possible to get a default value on a image column type!

Cheers Wim

I don't think so it will allow. Best way is to try adding a
default on the column. :D|||HI All,

Does someone knows if it is possible to get a default value on a image column type!

Cheers Wim

You must define the default value as a binary constant:

create table #l
(
[thing] image not null default( 0x0000000001 )
)|||You must define the default value as a binary constant:

create table #l
(
[thing] image not null default( 0x0000000001 )
)

Oops :rolleyes:|||Thanx for your reply,

How can i get my own image as a default?

No comments:

Post a Comment