CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2013
    Posts
    19

    How to deploy a project with SQL?

    I'm working on WinForms Project in VB2013 with Localdb SQL database (localdb)\v12.0).
    In this project I`ve been using "Management Studio" and both ADO.NET and Linq to SQL.

    How to suppose to deploy it?

    It is better to include DB into the Setup or I should to create the entire DB by code or what should I do?

    Thanks.

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: How to deploy a project with SQL?

    I don't think you should include the db in your setup, remember, it can be huge. I would suggest you deploy the CREATE TABLE queries at least

  3. #3
    Join Date
    Apr 2013
    Posts
    19

    Re: How to deploy a project with SQL?

    Quote Originally Posted by HanneSThEGreaT View Post
    I don't think you should include the db in your setup, remember, it can be huge. I would suggest you deploy the CREATE TABLE queries at least
    Thank you, HanneSThEGreaT

    Since I've always used Magnatment Sutdio to create and design DB and never done any Project deploy...

    Do you know any good example step by step on how to do it?

    Thanks again!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured