Jammer.NET API Documentation
Posted by Randolph Cabral on Thursday August 9, 2007
Our Sandcastle documentation for Jammer.NET is up!
Check it out at:
Special thanks to Mohammed Mudassir Azeemi for his generousity in hosting our docs! He’s one of the finest .NET developers in the open source community!
Click here for more information about Microsoft’s Sandcastle project.
Thursday March 20, 2008 at 7:48 am
Hello, hope fine.
I would like to use your code generator, but program give me error: The requested database EducationDb is not defined in configuration. “EducationDb is my database”
I am app.config that has below code:
<configuration>
<connectionStrings>
<add name =”ConnectionString” connectionString=”Data Source=.;Initial Catalog=EducationDb;Integrated Security=True” providerName =”System.Data.SqlClient”/>
</connectionStrings>
But I cant link my connection to your sqlConnection that you use in your code generator.
How do I can link my ConnectionString to your code generator?
Please help me to solve my problem.
Thursday March 20, 2008 at 7:17 pm
Hello Meysam Sadeghi,
The reason you are getting this message is because the “name” attribute value of the “add” element connection string section needs to be “EducationDb”.
Like this:
<add name =”EducationDb” connectionString=”Data Source=.;Initial Catalog=EducationDb;Integrated Security=True” providerName =”System.Data.SqlClient”/>
Once this is done, the error should go away.
Hope this helps!
-Randolph Cabral