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