How would I insert values using a command string where one of the values is null but the field in the DB will accept null?

For example:

VB Code:
  1. USE MyDB
  2. INSERT INTO MyTable (Name,Description,Notes)
  3. VALUES ('myName','myDescription',' ')

The last Value is null but I keep getting a truncated error when executing the command. Now keep in mind, not all of my notes will be null values.


Thanks in advance!!