When you create your table definition,
some databases require you to indicate
that nulls are permitted (some assume
NULLs unless you tell them NOT NULL).
I believe that Sybase is a database that
requires you to sepcify that a column
allows nulls by including the "NULL"
modifier, like so:
create table test (
blob_column image NULL
)
Rob
< Previous |
1 |
Next >
Add a Reply
This forum does not allow anonymous participation.
Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.