I am trying to deploy my website, which is basically a modification of the VWD personal web site. I have read the excellent article "Beginner's Guide to uploading a WVD 2005 Express website" and tried to follow the instructions but my website isn't working.
What I did was
1) created a SQL database using Helm and I called this "personal".
2) Using the Helm database manager I created a user to manage the database. I called this user "Debbie"
3) I then used myLittleAdmin for SQL Server 2005 to populate the database. Using the Tools I ran a query copied from personal-add.sql (supplied by MS). This did create the tables Album and Photos and stored procedures, but the tables seem to be empty and the stored procedures are prefixed by the user name.
4) So when I tried to run the website I now get the error
" Server Error in '/' Applicaton
Invalid object name 'SiteContent'"
5) I am connecting to the database with the following in web.config
<add name="personal" connectionString="
Data Source=ALUMINIUM;
Initial Catalog=personal.mdf;
Persist Security Info=True;
User ID=Debbie;
Password=*******;
Trusted_Connection=False"
providerName="System.Data.SqlClient" />
<remove name="LocalSqlServer" />
<add name="LocalSqlServer" connectionString="
Data Source=ALUMINIUM;
Initial Catalog=personal.mdf;
Persist Security Info=True;
User ID=Debbie;
Password=*******;
Trusted_Connection=False" providerName="System.Data.SqlClient" />
I'm sure this and all the other errors I've had are due to the fact that my database isn't set up correctly. But can anyone tell me what I did wrong when setting up my database?


Reply With Quote


Bookmarks