DB/Reporting :: Remote Access Of A SQLEXPRESS Database Using VB2008?
Jun 24, 2008
I'm currently designing a client application that connects to a SQL Server 2005 database. My app is being used to display data, allows users to run reports and stats on the data. It is being developed using VB2008. Within my VB2008 project, the connection string to the DB is made via SQLEXPRESS.
The road block that I'm running into right now is that it only allows me to connect to a local DB file (.mdf) only. I tried to connect to a different DB file on a server within the same network domain, and it generated the following error:
"The file "U:Data.mdf" is on a network path that is not supported for database files. An attempt to attach an auto-named database for file U:Data.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share." (where U: is a mapped network drive).
Below is the actual connection string in my code:
"SERVER=.SQLEXPRESS;AttachDbFilename=U:Data.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"
The intention is to have the DB reside on a server, where there is another application that runs as a service to collect the data and then populates this DB. Then my app would just connect to the database, and allows users to run reports based on the data in the DB.
I heard that this is the limitation of SQLEXPRESS: it will not allow connection to a remote database. This is true? If so, is there anyway that I can get around this limitation?
The main reason that I chose SQLEXPRESS in the first place is that because of the licensing issue. The company that I work for do not want to make the users of our software app have to purchase additional license for the full-blown SQL Server Enterprise edition. I also heard that SQL Server Enterprise edition does allow you to connect to a remote DB (.mdf) file.
View 7 Replies
ADVERTISEMENT
Sep 19, 2009
Trying to move from an Access MDB file to an SQLExpress(2005) MDF file and getting lots of problems. I have model my MDF file Like my Access MDB file ,same file name,same number of columns, same columns property,same columns name, see out of the 13 columns 8 have default value, I think I am getting a syntax problem when inserting the data into the table, being new to SQL Express I don't know how to write the proper SQl syntax
See my code for inserting and updating (using Access.mdb) which I whoud like transpose to SQL
'// Insert a record into the database for the node.
sSql = "INSERT INTO [TreeViewItems] (bRoot, dLastModified, iImageIndex," & _
"iParentID, iSelectedImageIndex, iSort, sName, sFullName) VALUES " & _
[CODE]...
View 1 Replies
Sep 20, 2011
Recently working in vb 2010 express. I'm using service-based database which is based on SQL Server. This database will be deployed at the server. Is it possible that multiple vb.net programs, which are installed in remote computers or client computers in the same network, connect to this database simultaneously? Does the service-based database support multiple connections?
View 1 Replies
Feb 17, 2009
I have a problem with the connection to my database. It's on a remote server, and this is my code:
[Code]....
View 7 Replies
Sep 26, 2008
I'm still passed from VB6 to VB2008 and...I found it very changed!I've learned in few days how to use the most used commands, but I've got a big problem in connecting to an Access Database.I saw that we can connect to a database using:
- wizard connection
- manual connection
I think that using the Wizard everything is more cleaned and I can reuse the code in a simple way.So I tried the Wizard Connection, but all the guide and tutorial explain the connections using DataGrid. I don't want to show DataGrid. I've learned how to import data in listboxes (also in auto-complete mode) but I cannot understand how to work on data in the way I prefer.
- I've got a combobox with a list of data
- When I "change" the selection (combobox_SelectedIndexChanged) you have to load related data (from another table) in a ListBox (in which I can add other items without inserting them in the DB)
- Send all the data loaded in this fields (there are also other data) to create a record in the DB (like "Order of Product")
View 4 Replies
Apr 3, 2011
so i need to link the database but i want to use the bind source way, i dont like using the oeldbadaptionand all it needs to do is perform a search for records, insert new record and save the record but
View 4 Replies
Jun 26, 2009
How to Retrive Image In MC Access database Using VB2008
View 1 Replies
Oct 6, 2010
My client keep on insisting that they want there database to be ms access and not sql server. But they also what to be remotely accessible in there network.
Is it possible to use ms access as a remote database? would the database locked up once a connection is made?
View 4 Replies
Jun 13, 2011
i have written an application in vb.net 2008 that i want to access a remote database.when it tries to connect, this is the error message:[code]
View 2 Replies
Feb 24, 2010
How can I connect my vb2008 windows app to an Access 2000 database which is located at www.mysiteserver.com/files/rubbishdatabse.mdb?What code is needed to do so? And where should I put the code in(of coz in the vb app, i know XD, but which part)?
View 8 Replies
Oct 26, 2011
VB2008 with MS Access Database updated related data ?
View 9 Replies
Jun 13, 2012
querying a remote Access database! We are currently using this because thus far we have failed at hooking up a sp_linkedserver. I feel like it's a terrible hack and want to be done with this whole network mapping business once and for all!
[Code]...
View 1 Replies
Apr 21, 2008
I want to move my programs and the database to another computer and hard-disks. It looks to me as though I nearly have to re-create the controls and rewrite some of the code to make it so the programs still work after the move. At least with ODBC all I would change was the DSN definitions external to the programs. Is there an easy way to move or rename a database without loads of work?
View 3 Replies
Jan 16, 2010
I'm trying to retrieve data from an Access database - a simple one. (Just a single table with one column) My task is to view these records through a 'ListView'. No need to manipulate or anything. Just to retrieve data with a simple SQL statement and display via a ListView.
View 4 Replies
Mar 13, 2011
I need to be able to save, edit, and delete records in an access database through vb2008. Editing and deleting records works perfect, but I cannot save new records. Can anyone assist?
Here is my code
Imports System.Data.OleDb
Public Class Main_Form
Dim con As OleDbConnection
Dim cmd As OleDbCommand
[code].....
View 8 Replies
Jan 11, 2011
Client form need an access to the ms access database located at the Server. I've just created a database in MS Access in the format .mdb, 2000 version. Forms created in the platform Visual Basic 2010. Kindly post procedure or source code to do it. I preferred to use OleDB connection since i used it on a stand-alone access to database.
View 4 Replies
Jun 6, 2011
I am currently developing in Visual Studio 2008 (Visual Basic) and I have no problem reading, editing, saving, etc. to a 2007 Access database that is stored locally using the following code:
Dim NotifyDS As New DataSet()
Dim NotifyCon As New OleDb.OleDbConnection
NotifyCon.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|DataSettings.accdb"
NotifyCon.Open()
Ultimately I am going to be installing this program in my office on multiple computers, but would only like to have one "server" program where the database is installed. All of the other computers will have access to this one database over the LAN. For some reason I am unable to access this remote database file over my LAN. I have tried all sorts of things (including a username and password for the server computer),
[Code]...
View 7 Replies
Feb 14, 2012
I'm trying to access server database from a remote computer in lan-based network using this connection string "Server=192.168.10.2; user id=user; password=pass; database=sample_db" .. but it can't open a connection.. I don't know what to do, I tried searching for this but no luck.
View 3 Replies
Jul 14, 2009
I have an issue with am access database source located on a remote computer.I tried using ADODB to access it, it works, but when I change( update insert or delete) the database on the remote computer, the changes is not reflected in my application
View 1 Replies
Apr 6, 2009
I have an MS Access 2003 database built that resides on a shared network path at the company I work for.The database works perfectly for users connected directly to the company network.However, when a user tries to open the database while connected remotely to the company network (they can still access the shared path), they receive the following error:The Microsoft Jet database engine stopped the process because you and another user are attempting to change the same data at the same time.At the time that they tried it, they were the only person accessing the database.They tried a local copy as well as a copy on the network shared drive.[code]
View 4 Replies
Sep 29, 2010
---3 laptops running same VB.NET application locally AND access/share same database located on one of these machines. Is this Possible? an easy way? ---OR would the best sollution create a website with database ?
View 1 Replies
Aug 21, 2008
I'm building an aplication with an MS Access database behind the scene. In many of my forms I'm gonna use DataGridViews to show data from the database, not an entire table but data based on manually built queries. So, I have few questions without answers, by now. Solutions or 1. I haven't decided how will I bring the database into the project: from the menu -> Add New Data Source, or within the code, at runtime. I still don't know which one's best or why.2. How exactly can I execute any SQL query (SELECT, INSERT, UPDATE, DELETE etc) on my Access database from my aplication?
View 3 Replies
Dec 3, 2009
i have an ACCESS database with 3 columns. I establish the connection with the VB 2008 Express and put the data in the form but i don't know how to add the text of a textbox in the database.
View 5 Replies
Aug 29, 2009
I installed Visual Studio 2008 and Office Enterprise 2007 in my new computer.I made some codes for a data reader to get data from an Access dabase. On the step where it will open the connection an exception appeared which says "Microsoft.Jet.Oledb.4.0 provider is not registered on the local machine".
View 7 Replies
Aug 27, 2009
I'm trying to query an access database, but my query results only display the first cell of the query results.
For example, if I select 3 columns, 5 rows, only Column 1 Row 1 is displayed. Someone mentioned something about EOF but I can't find EOF code for OleDB. Should I be using another type of connection?;
Code:
Private Sub btnGetReport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetReport.Click
Dim StartDate, EndDate As Date
[Code]....
View 1 Replies
Mar 15, 2008
I wanna create an access database programmatically.How should this be done?Do you recommend that I do it via code?I don't know how to create an access 2003 compatible file at run-tim
View 4 Replies
Aug 2, 2009
I'm trying to create a database driven application using VS 2008. I want my database to be generic, i.e it shouldn't rely on the existence of MS Access or similar application. So how do I create such a database, add tables , values..etc?
View 7 Replies
Jul 16, 2009
I need to update a database app written in VB, Visual Studio 2003, using an Access Database.Currently: Customer has 4 users, local network. Access Database is 30MB, about 50 tables.Wanted: Customer is opening new offices, and wants to connect to the database via the internet. There will be 10-15 users.App background: I have all data access via OleDbDataAdapters and one OleDbDataConnection.There are 4 DataSets: Global, Lookup, Reports, FormSpecific.
I have one Private function: FillTable:
Private Function FillTable(ByVal TableToFill As DataTable, _
Optional ByVal OleDbAdpToUse As OleDb.OleDbDataAdapter = Nothing) As Integer
' fills the table by using OleDbDataAdapter.Fill(aTable)
[code]...
All is working well.What I Need to Do:I think I need to migrate the Access Database to MS SQL. What I Have:Visual Studio 2008 Professional. I have started the MS SQL walkthroughs. I did the �Create a Data Connection to the Northwind Database� walkthrough, and connected via MS SQL Server. I cannot find where I can modify the SQL Commands. If I convert my Access Database to a MS SQL Database then can I
1) Just update the OleDbConnection, so it connects to the MS SQL Database (not the Access database).
2) If I cannot do #1, what do I need to start with?
View 6 Replies
Mar 11, 2008
I'm using Access 2001 and my Database is structured as follows:
Chance(Number, Detail, Action, Amount, Owner)
CommunityChest(Number, Detail, Action, Amount, Owner)
[CODE]........
I'm making a Monopoly Game which i'll make sure i post up here when done, I'm using Visual Basics 2005 and OLEDB Connection, i know how to work all that but i have the following scenarios to find SQL for.
Upgrade Property - I need to use the Update Query for this. A PropertyName is selected from a list box and someone then clicks to upgrade a property.
Properties.HousesOwned should have it's value raised by 1 Where the player owns all 3 sets. The Houseprice should then be took off the Players Money.
Downgrade Property - I need to use the Update Query for this. A PropertyName is selected from a list box and someone then clicks to downgrade a property.
Properties.HousesOwned should have it's value lowered by 1 (until it gets to 0) Where the player owns all 3 sets. The Houseprice should then be added to the Players Money.
View 2 Replies
May 30, 2009
I'm trying to update an MS Access database, but that doesn't seem to work. I do NOT get an error, but nothing changes in the database.
Code:
Dim myCommand As OleDbCommand = Nothing
Dim strUpdate As String
strUpdate = "Update Settings Set Data = @Data Where Name = @Name"
[Code].....
View 11 Replies