Hey there,
I have a program that uses a sql express local DB. I want to be able to update that DB using the program to run the necessary scripts. A text files has been added as an embedded resource to the project (VS2010), and the file contains text. It fails to open the file though. I get an "ArgumentNullException was unhandled" "Value cannot be null. Parametername: stream" here's the code...

Assembly assem;
StreamReader textReader;
assem = Assembly.GetExecutingAssembly();
//fails at this line below.
textReader = new StreamReader(assem.GetManifestResourceStream("projectName.sqlUpdates.txt"));

tReader.Peek() != -1)
  script = textReader.ReadToEnd();
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Is 'projectName' the full assembly and namespace where the file sqlUpdates.txt lives? Is the code running your example above in the 'projectName' assembly, or somewhere else?

If the sqlUpdates.txt file lives in a namespace below the projectName assembly, then you need to specify that in the call to GetManifiestResourceStream, ie:

Stream resource = assem.GetManifestResourceStream("projectName.nameSpace.sqlUpdates.txt")
link|improve this answer
stupid error on my part, i wasn't case sensitive on the name of the namespace. after looking at the assembly and namespace names and comparing that to what i had, i saw it. thanks – dave k May 5 '11 at 19:23
feedback

That basically means that

assem.GetManifestResourceStream("projectName.sqlUpdates.txt")

returned null... which it will do if it can't find that resource. Check that it's actually in the assembly, e.g. with Reflector or assem.GetManifestResourceNames().

link|improve this answer
honestly, i'm a fairly new prgrammer so i don't know what all that means... The text file was added by right clicking the project name in the solution explorer, add-new item-text file. then i set it's properties with 'Embedded Resource' and 'copy if newer'. The assembly name, and default namespace are both the same. so it should be in the assembly, right? – dave k May 5 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.