开发者

Saving data in table in SQL Server 2005

I am asp.net developer and I work with SQL Server 2开发者_开发问答005 .

I have a table with 4 columns

say

  1. Name
  2. RollNo
  3. Std
  4. Div

if client enters

  1. Name
  2. RollNo
  3. Std

but doesn't enters 4.Div column data and try's to save data, it should not give error, it should save the data in database


So it is giving you an error? Make sure that you set 4. Div column to "Allow Nulls"(No value).

It's also good to know that SQL Server can be set up to insert a default value if one isn't provided.


HI,

That means that you need to save with either default division for standard or null value.

You can setup in database to allow null and do not pass anything and that saves the data with null values.

Otherwise, I think you should put default value in Div for that standard. So whenever you dont pass that value in Insert statement, it takes default one.

Will it help or do I misunderstood it?


If I understand your problem, you're going to have NULL in one of your fields (provided you allow nulls in the fields). Depending on where you're experiencing your problem, your code would need to test for NULL from the information a client inputs or your code will need to test for NULL when it retrieves the information.

If you're running into an error, it might be prudent to post details of the error as well.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜