| | |
Visual C#: Inserting an Access Database Record
Please support our C# advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
![]() |
•
•
Join Date: Mar 2006
Posts: 20
Reputation:
Solved Threads: 0
Good day, I have been trying to add a new record to the Access Database that has already been connected to the Visual Basic Application (Using Visual Studio 2005) that I have been developing, using the DataSource and the DataAdapter objects, though I'm able to add an Insert query and run it, but the record is not saved in the related database at all.
Can you give me some hints and directions as how to solve the above mentioned problem, thanks.
Can you give me some hints and directions as how to solve the above mentioned problem, thanks.
Access doesnt have transactional and stored proc support and I really really really think you should migrate to MSDE aka SQL express. But if you have to use Access....
[ripped off MSDN]
The problem with this is that it can introduce SQL Injection attacks if used on a website. If you don't know what this is, it goes something like this (old customer id parameter has to be larger for this lets say its char 20 instead of 5)
oldCustomerid = "1;delete customer;";
oops!
Even a poorly written stored procedure would pass this along, but atleast if the customerid was a number, the type would be a number and you would get an error.
If you do use a DBMS, don't do "Select * from..." there is a hidden cost to this. There is additional overhead to get the table column schema first, then the query gets resubmitted as "Select field1, field2, ... fieldn from..."
Lastly, explicitely open the connection so it reminds you to close the connection so there are no memory leaks! If you dont close the connection the objects wont be freed until the GC comes along whenever that may be.
[ripped off MSDN]
C# Syntax (Toggle Plain Text)
private static OleDbDataAdapter CreateCustomerAdapter( OleDbConnection connection) { OleDbDataAdapter dataAdapter = new OleDbDataAdapter(); OleDbCommand command; OleDbParameter parameter; // Create the SelectCommand. command = new OleDbCommand("SELECT * FROM dbo.Customers " + "WHERE Country = ? AND City = ?", connection); command.Parameters.Add("Country", OleDbType.VarChar, 15); command.Parameters.Add("City", OleDbType.VarChar, 15); dataAdapter.SelectCommand = command; // Create the UpdateCommand. command = new OleDbCommand( "UPDATE dbo.Customers SET CustomerID = ?, CompanyName = ? " + "WHERE CustomerID = ?", connection); command.Parameters.Add( "CustomerID", OleDbType.Char, 5, "CustomerID"); command.Parameters.Add( "CompanyName", OleDbType.VarChar, 40, "CompanyName"); parameter = command.Parameters.Add( "oldCustomerID", OleDbType.Char, 5, "CustomerID"); parameter.SourceVersion = DataRowVersion.Original; dataAdapter.UpdateCommand = command; //do the same for the insert and delete commands on the data adapter return dataAdapter; }
The problem with this is that it can introduce SQL Injection attacks if used on a website. If you don't know what this is, it goes something like this (old customer id parameter has to be larger for this lets say its char 20 instead of 5)
oldCustomerid = "1;delete customer;";
oops!
Even a poorly written stored procedure would pass this along, but atleast if the customerid was a number, the type would be a number and you would get an error.
If you do use a DBMS, don't do "Select * from..." there is a hidden cost to this. There is additional overhead to get the table column schema first, then the query gets resubmitted as "Select field1, field2, ... fieldn from..."
Lastly, explicitely open the connection so it reminds you to close the connection so there are no memory leaks! If you dont close the connection the objects wont be freed until the GC comes along whenever that may be.
Venjense
•
•
Join Date: Sep 2009
Posts: 51
Reputation:
Solved Threads: 0
•
•
•
•
I figured out my problem. I had included the database file in the project. Therefore it was overwritten each time I compiled the project, making it look like the database wasn't being updated. I created an external database and it works flawlessly now.
Thanks for the responses.
•
•
Join Date: Jul 2009
Posts: 774
Reputation:
Solved Threads: 119
•
•
•
•
I figured out my problem. I had included the database file in the project. Therefore it was overwritten each time I compiled the project, making it look like the database wasn't being updated. I created an external database and it works flawlessly now.
Thanks for the responses.
•
•
•
•
hi how did you do it?=) cause I'm using microsoft access to store the data and i was wondering how can i make the the database to be updated?
Copy to Output Directory property to be "Copy if newer" option. ![]() |
Similar Threads
- Writing to an Access Database (Visual Basic 4 / 5 / 6)
- i cant save data on an access database (C#)
- Inserting a new Access Database Record (VB.NET)
- Inserting Data into Access Database (Java)
Other Threads in the C# Forum
- Previous Thread: Error in updating database.. help needed
- Next Thread: Panel Mutiview? - Best Practice!!
| Thread Tools | Search this Thread |
.net access algorithm alignment app application array bitmap box c# c#gridviewcolumn check checkbox client color combo combobox communication concurrency control conversion csharp custom cyclethruopenforms data database datagrid datagridview dataset datatable datetime degrees draganddrop drawing enabled encryption enum excel file focus form format forms function gdi+ getoutlookcontactusinfcsvfile globalization hospitalmanagementsystem image input install installer java list localization mandelbroth math messagebox microsoftc#visualexpress mono mouseclick mysql operator path photoshop picturebox pixelinversion plotting pointer post programming radians read regex remote remoting richtextbox save server sleep socket sql sql-server statistics string stringformatting sun table text textbox thread time timer update usercontrol validate validation visualstudio wpf xml





