Deploy Windows Application With Its Local Database SQL Server R2 Express?

Apr 5, 2012

how can i deploy windows application developed using Vb.net and Sqlserver R2 Express as local database?..how can i make it in setup format(including sqlserver) to deliver to clients?is it compulsory the client should install SQL Server R2 Express in his system apart from the installation of this windows application?

View 5 Replies


ADVERTISEMENT

Deploy SQL Server Express With Application?

Nov 21, 2011

How can I deploy my sql server express 2008 database to client that do not have sql server instance at all? Since the server connection in my vb.net program is hard-coded, I want the server instance on client side has the same instant name as mine.

View 7 Replies

Deploy Stand Alone SQL Server 2008 Express Database?

Dec 10, 2008

How can I deploy and reference a stand-alone SQL Server 2008 Express database with my vb.net 2008 Express app ?

View 8 Replies

Deploy A New Windows Application With A Database Attached To It?

Sep 30, 2011

I have develop a wiindows application and it's done in MS Visual Studio 2008 using the VB language and it connect to a 2005 sql database. now i want to deploy my application and want it to be directly attached to my database so that when someone installs it, it comes directly with the database attached to it.

View 1 Replies

SQL Server - Local Database With Visual Basic Express 2010

May 24, 2011

Visual Basic 2010 Express, lets the user to add a Local Database with .sdf extension. These databases needs MICROSOFT SQL Server to be created or they can run in the user's pc without any additional software? What are the limit of these databases unlike an external database?

View 2 Replies

"sql Server Express" A Prerequisite When Deploy Application?

Apr 4, 2010

why is "sql server express" a prerequisite when i deploy my application? is it because i am using the "oledb" class? im using it to connect to a ms access database...could i be using any other class that would not require "sql server" to be a prereq? what about the "ado" class?

View 4 Replies

Deploying Desktop Application With SQL Server Express As Backend Db On Local Area Network

May 28, 2009

Basically back in VB6 days, I created several VB6 apps with Access as the backend database. I'd package my Access db file with the application setup, which copied it on to a shared network drive, and then different computers on the LAN could use the same backend database file, and that worked just fine. With SQL and VB .Net, I've done work with a SQL database hosted on a remote server, so you can basically build your query string easily and anyone can connect to it from anywhere, and it works just fine.However, what I'd like to do is have a local SQL express database as the backend for a VB .Net application and make a setup program that can install it in a way that it could be shared on a Local area network, without the user who is installing the application do anything.

I know about building a connection string with the local machine name, but I don't really have any experience with including an actual MDF file with the application. Does anyone know how it works, and is it a better approach? Does it work similar to placing an access file in a shared unc path?I know that ClickOnce (which is awesome) can install SQL express easily on a user's machine. However, the key is that I want SQL express to be installed only on the machine that is going to be the database server in a LAN enviornment, and not on every machine, unless it is neccesseary. And then how does your VB app know how to build the connection string to access the database from any machine on the local share?

View 2 Replies

Windows Application Ignores App.config And Uses Something To Connect To Local Database

Jan 10, 2012

The application sits on a virtual environment and when I remote in and run the application, it connects to the remote database. However, when I remote in with a service account and double click the same .exe, it tries to connect to the local host database and ignores the app.config. The code is the same, only the login name I use is different. The login I use is part of the local admin group. Any ideas?

View 2 Replies

How To Deploy Mdb And .xml File With VB 2010 Express Application

Apr 17, 2010

I have a VB 2010 Express application that uses a .mdb and a .xml file. Both files are part of the project. I am pulling my hair out to try to figure out how to make sure that these two files are deployed with the application. So far, I have only been running in Debug mode, so I'm focused on making that work.

When I click on the Application Files button on the Publish Tab of My Project, both the mdb and xml files are visible. I have tried setting both files to Data and Include. In either case, the mdb file is copied to the bin directory when I try debugging my application. However, the xml file is not copied no matter which option I select.

How can I get the xml file to be copied into the bin directory like the mdb file?

View 4 Replies

VS 2005 Net Application And SQL Express Network Deploy

Aug 17, 2009

I have my vbnet application with sql server express designed for individual desktop pc. Now I want to have it work on a network.

1_ how can I make my customer to install sql express and the Database on the server and enable the network protocols seamlessly? dont want to have my customer configuring sql expess manually. 2_ how can I have my client software to look for the sql express and connect to it in a seamless way??

Can I avoid the customer to enter configuration data?

View 7 Replies

Installing An Application With SQL Server Express Database?

Jun 11, 2010

I have an app developed with VB .NET as front end and SQL Server Express 2005 Database. Now I want to install it on a server so that other client PCs can access it. My gquestions are:

1. Do I have to install SQL Server Express on the Server before I can install my database on it?

2. Do I have to install Visual studio on the clients before I can install the front end?

3. Is there any online walk-through/tutorial on how to accomplish this (ie, installing a database app on a server and connecting the clients)?

View 4 Replies

DB/Reporting :: Multi User - Windows Application With Back End As SQL Server 2008 Express

Mar 17, 2009

I'm working on a multi user VB.Net windows application with back end as SQL Server 2008 Express. The SQL Server is installed on the intranet network drive. This is the connection string I will be using. Is this correct?

Data Source=.SQLEXPRESS;AttachDbFilename=Q:DatabasePrintDB.mdf;Integrate d Security=True;Connect Timeout=30;User Instance=True

View 3 Replies

Deploying An Application Express 2010 With A Sql Server 2008 R2 Database?

Apr 10, 2012

I have recently developed a back end database in SQL server 2008 R2 and attached it to a application in VB express 2010.Everything works fine and when i publish the application, it works fine on my machine, but once i try to setup up the application on another machine i get the error message: A network related or instance specific error occurred while establishing a connection to SQL Server. Server was not found or not accessible please verify the instance name is correct or allow remote connections.I have read numerous forums on this saying about changing the connection string and instance name.but with being novice i dont understand what needs to be changed etc.The sql server allows remote connections, but i am unsure what else needs changing to allow the application to work with the database on another machine.

View 5 Replies

C# - Windows Form + Database (Sql Server)+ Windows Mobile Application?

Mar 17, 2011

i am doing project of Order Accepting system for five star hotels.Scenario is Waiter will accept order using Window Mobile which is Connected to WiFi present in hotel.I want to communicate to database(Sql Server) present on My Machine (Computer present in kitchen) through WiFi and Add order into table present inside database. This should notify my application present on Compter and should print order. After completion of Order Application from kitchen will notify to waiter about completion. My problem is How to Communicate with database present on Remote computer using WiFi from windows Mobile.

View 2 Replies

C# - Deploy An ASP.NET Application As Desktop Application (with Server Component)?

Jul 7, 2010

Question: I created an ASP.NET web application. Now it originally was meant for deployment on a webserver.That is working, so, so far so good.My question now is: Is it possible to deploy it as a desktop-application, too? That is to say the installer installs some kind of server, plus the web application, configures the server to run this application on a localhost URL, and then creates a link in the start menu/desktop, where it opens that url (website, the application) on localhost in a web browser?

I think it should be possible, though the server wouldn't be IIS, because this is a windows component which can't be separately installed. Is there anything like this already out there The nonplusultra would be that it only starts the server when you click on the shortcut.

View 4 Replies

Deploy SQL Server Database?

May 22, 2012

Does anybody know how to deploy SQL server database using VBnet.(When you install application on user computer, application should be setled to use database, How?)

View 1 Replies

Deploy 2005 With Crystal Report 9 On Windows Server R2 2008 X64

Dec 1, 2011

My problem is, when deploy vb.net 2005 with crystal report on Windows Server R2 2008, the report can't load it show blank. i'm using AxCRViewer91 component.

the DLL's;
AxInterop.CRVIEWER9Lib.dll
Interop.CRAXDRT.dll

Is it compatible on Windows Server R2 2008 x64?

View 1 Replies

Deploy An SQL Server 2005 WPF Application On Vista?

Sep 27, 2011

I am trying to deploy an SQL Server 2005 WPF application on Vista. Database connection is failing. Can someone tell me on what to do. The app deploys well on other operating systems.

View 6 Replies

How To Deploy .net Windows Application In Linux

May 26, 2010

i developed a windows application in vb.net 2005 and i used ms-access as my database. i need to deploy my application in redhat linux operating system.

View 4 Replies

C# - Deploy SMO Application To Workstation Without SQL Server 2008 Installed?

Jun 15, 2010

I am trying to deploy an application that uses SMO on a workstation without SQL Server installed on it. The instance the app is connecting to is SQL Server 2008. The application is failing with:Could not load file or assembly 'Microsoft.SqlServer.Replication, Version 10.0.0.0, Culture=neutral,PublicKeyToken=89845cdc8080cc91' or one of its dependencies. An attempt was made to load a program with an incorrect format.

The assembly in question is in the same path as my application as well as system32. I am running this on a Windows 7 64 bit box. I have run SQL Native Client, CLR, and SMO MSIs from the 2008 SMO redist download page.This app worked fine when connecting to SQL Server 2005.

View 1 Replies

Deploy A Windows Application That Contains Subclassed DataGridView?

Jul 8, 2011

I would like to know the correct procedure to deploy windows application in VS-2005.

There are some specific issues I am facing after deploying the project to the client machine.

- I have a CMS (ContextMenuStrip) in one of my forms associated with a TreeView and its not showing.

- Another form that contains a custom DataGridView which i created by subclassing default DataGridView is not showing this control.

DETAILS:-

- Everything works fine on my machine

- I BUILD the project in the RELEASE mode

- From the binRelease folder copied the .exe to the client machine in the root, also copied the Reports to the root on client. Is this correct way to deploy?

- Instead of setting the CMS property of the TreeView, I instantiated a CMS in my form, assigned it to CMS property of TreeNodes when TreeNodes are populated programmatically.

View 2 Replies

Deploy Windows Application With Attached .sdf Db Files?

Apr 29, 2009

I am working on vs2008+vb+sqlserver compact edition project which hav a attached .sdf database. Now i want to deploy my project to clients machine. I dont want to embbed sqlserver ce with my setup and also on clients machine. Now i m not getting idea, how to add sqlserver ce dll files with my application to deploy on client side and also i don't hav any experience of deployment. I m using a third party code security tool to prevent my codes and which also provides licencing facilities. So, How could i manage all these stuffs for successfull application deployment?

View 8 Replies

Deploy Project With Sql Database To The User Who Don't Have Sql Server On His System?

Jun 3, 2010

I have made a project in vb.net 2008 and used sql server 2008 for database and how to make the setup that need to be deploy on those system which do not have sql server on their system .

View 9 Replies

VS 2008 - How To Deploy A SQL Server Database Program To A Machine

Mar 22, 2010

how do I deploy a SQL server database program to a machine thats I don't know the name of the machine. tried using "server (local)" but still.

View 6 Replies

Deploy Windows Application Without Using Setup And Deployment Package

Apr 8, 2009

I have created a windows application which Installs Multiple MSI's based on some condition. The project is created in Visual Studio 2008 with .Net framework 3.5; If this application runs in a machine which has atleast Dot Net 2.0 installs, it works fine. but the system without framework 2.0 throws an error "The application failed to initialize properly (0xc0000135)"

How can I stop my application from crashing. I tried giving a check in the Main(), but it is not even firing the Main(); Is there any way I can give a prerequisite, But not in the Publish, Coz i am using the output exe and not the clickonce output..

View 1 Replies

Vb Express Not Updating Local Database?

Mar 13, 2012

i'm using a copy of visual basic express for my home projects. i'm just started one that is needing a local database, so i added one to the project and created the tables with with colums no problems.

i created an 'Admin' user straight into the database and use that to log in. i have also created an a form so that you can add other users and view existing users in a datagrid view.

the original source code i used was supplied in on this forum page:

[URL]

its all well and good, and works fine, right up to the point when i shut the program down and then re-open it the next day, all the users i created the previous day arent there anymore.

the code for creating the users is this :

Dim con As SqlCeConnection = New SqlCeConnection(My.Settings.Database1ConnectionString)
con.Open()

[Code].....

View 2 Replies

VS2010 Converted 32bit App From .Net 1 To .Net 4 Not Loading Without Local Version Of SQL Server 2008 Express Running?

Mar 28, 2011

I have an application that will not load unless my local SQL Server is running on an Vista Home Premium machine. This started after a .Net 1 to .Net 4 conversion. I am using a sub main sub that is not being called (msgbox is not fired when entering the app), however, I see the app through taskmgr with increasing memory usage, but then the app is removed from the list. By design, if the program cannot locate a SQL Server a form pops up with a connection box to locate the SQL Server for the app. How it determines if it has a valid connection is the program looks for a connection string in the registry, then attempts to connect to it, however, none of this code executes because of the failure to enter into the sub main.The two machines I have tried the 32 bit app on

XP Pro: Failed / Using SQL Server 2008 Express

Windows 2003 Server: Works / Using SQL Server 2008 Developer

Both machines have .Net 4 Client Profile with Extended?

View 10 Replies

How To Deploy Database Application In Vb2008

Dec 14, 2010

i'm developing a linq to sql database application that i created with visual basic 2008. I intend to install the application on another computer system. The problem i'm having now is that, after i've developed,deployed it and installed it on another computer, i can't find the linq to sql database i created with the projectkelvin rolex on the installed application on the other computer,

View 3 Replies

Connect To A Database On SQL Server R2 Express From Visual Basic Express?

Nov 1, 2011

Is it possible to connect to a database on SQL Server R2 Express from Visual Basic Express? I am following a set of tutorial videos done in SQL Server 2005, but cannot seem to connect to create the database. I have created the database in SQL Server R2 Express, but cannot connect. Is there a work around?

View 4 Replies

Connecting VB 2010 Express To SQL Server 2008 Express Database Via IP

Feb 29, 2012

Here is the scoop: I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords. Plan is to host this server so people can login to use the the application and verify they have a valid account. I would like to host all the account information in SQL due to the possiblity of hundreds of users at any given time. I also need the ability to add data to the database for users registering for the first time. The SQL server will need to be able to access the SQL Server databases remote via WAN.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved