473,797 Members | 3,148 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

[vb8] Add NewRow to .mdb problems

Hi there,
hoping somebody can help out here. Searched half earth to find a
solution but no success yet. The following code doesn't gave any fault
or warning but doesn't what it is suppose to do.
Can somebody explain why this code does not produce an extra new row in
my database?

Thanks, Nico
*************** *************** *************** *************** ************
Imports System.Data.Ole Db

Public Class Form1
Inherits System.Windows. Forms.Form
Dim VarDataAdapter As New OleDbDataAdapte r()
Dim VarConnection As New OleDbConnection ()
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As
System.EventArg s) Handles Button1.Click

VarConnection.C onnectionString =
"Provider=Micro soft.Jet.OLEDB. 4.0;Data Source=PetChamp .mdb;User
Id=admin;Passwo rd=;"
VarDataAdapter. SelectCommand = New OleDbCommand("S ELECT * FROM
Omzet")
VarDataAdapter. SelectCommand.C onnection = VarConnection

Dim newRow As PetChampDataSet .OmzetRow =
Me.PetChampData Set1.Omzet.NewR ow()
newRow.Artikel = "Muis met staart"
newRow.EANcode = "123"
Me.PetChampData Set1.Omzet.Rows .Add(newRow)
OmzetTableAdapt er.Update(PetCh ampDataSet1)
End Sub

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'TODO: This line of code loads data into the
'PetChampDataSe t1.Omzet' table. You can move, or remove it, as needed.
Me.OmzetTableAd apter.Fill(Me.P etChampDataSet1 .Omzet)
End Sub
Oct 25 '07 #1
1 1411
Pitmaster schreef:
Hi there,
hoping somebody can help out here. Searched half earth to find a
solution but no success yet. The following code doesn't gave any fault
or warning but doesn't what it is suppose to do.
Can somebody explain why this code does not produce an extra new row in
my database?

Thanks, Nico
*************** *************** *************** *************** ************
Imports System.Data.Ole Db

Public Class Form1
Inherits System.Windows. Forms.Form
Dim VarDataAdapter As New OleDbDataAdapte r()
Dim VarConnection As New OleDbConnection ()
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As
System.EventArg s) Handles Button1.Click

VarConnection.C onnectionString =
"Provider=Micro soft.Jet.OLEDB. 4.0;Data Source=PetChamp .mdb;User
Id=admin;Passwo rd=;"
VarDataAdapter. SelectCommand = New OleDbCommand("S ELECT * FROM
Omzet")
VarDataAdapter. SelectCommand.C onnection = VarConnection

Dim newRow As PetChampDataSet .OmzetRow =
Me.PetChampData Set1.Omzet.NewR ow()
newRow.Artikel = "Muis met staart"
newRow.EANcode = "123"
Me.PetChampData Set1.Omzet.Rows .Add(newRow)
OmzetTableAdapt er.Update(PetCh ampDataSet1)
End Sub

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'TODO: This line of code loads data into the
'PetChampDataSe t1.Omzet' table. You can move, or remove it, as needed.
Me.OmzetTableAd apter.Fill(Me.P etChampDataSet1 .Omzet)
End Sub
You're adding a new row to the dataset (which just holds the result of
your query), not to the mdb file. You'll need to use an insert query to
add a new row to the database. I.e.: "insert into omzet..." etc. and
then execute that query on the database.

--
Rinze van Huizen
C-Services Holland b.v
Oct 25 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2247
by: Al Bastido via .NET 247 | last post by:
could somebody please explain to me how the datatable.newrow method works, i've been trying to figure it out for weeks. I need to emulate it myself. I can bind my datagrid to a collection of objects with no problem. But that leaves me with a fixed number of properties per object and therefore a fixed number of columns in my datagrid. I wanted to do something similar to the datatable, where you add columns then have a method that generates...
7
3401
by: Jason Callas | last post by:
I have a process that manages a list of trades. Each trade is a separate row in the table. I blast the process with 10,000 new trades in order to stress test it and end up with the below listed exception when I call the NewRow method. The number of times it happens is NOT consistent (sometimes a few times out of 10,000 and sometimes 1000+ times). The app is written in VB and I am using SyncLock everywhere the table is accessed but I am sure it...
1
2558
by: Piyush Gupta | last post by:
Hi All, I am using following code snippet to add another user in Users.xml: ------------------------------------------------------------------- DataSet dstUsers = new DataSet(); dstUsers.ReadXml("Users.xml"); DataTable dtbUsers = dstUsers.Tables; DataRow drwUser = dtbUsers.NewRow(); drwUser = "Test User 2"; dtbUsers.Rows.Add(drwUser);
1
2580
by: Tomas R | last post by:
I have a datagrid with a dataview(created from a DataTable) bind to it. It displayes coordinates and I have a toolbarbutton that will create a set of new coordinates just like the existing ones, accept that the x-values is mirrored. It's also possible to remove these coordinates, by a method that removes any row with negative x-values. This usually works fine a few times, mirroring and then removing. But then suddenly the NewRow statement...
14
2871
by: Agnes | last post by:
I only one datagrid, and one button. the buttonwill process ' dtmyTable.newrow()' , However, the datagrid seems didn't add the row byitself ?? Thanks
1
929
by: smith | last post by:
Sometimes you just notice something neat ... You may already know this but my googling didn't show it as having been mentioned and I thought it deserved it. If you're like me and tried the gotdotnet vbcommenter and the fesersoft.com vb commenting tool but gave up on both because neither gave your component classes the intellisense popup information, did you notice that when using the VB8 Express you got the class intellisense to work...
2
6408
by: Dick Monahan | last post by:
I have a little VB6 program that dumps the schema of an Access 97 database. The following lines of code are relevant. Private m_wsDb As DAO.Workspace Private m_db As DAO.Database Set m_wsDb = DBEngine.CreateWorkspace("MainWS", "admin", vbNullString) Set m_db = m_wsDb.OpenDatabase(m_zDbFilePath, False, False, "") Dim tdf As TableDef
1
374
by: jhansen | last post by:
I am having problems with my datagridview adding an extra blank row. I allow the user to enter a row of data, and based upon business rules, I add additional rows in the following manner. What could be causing this problem? DataTable newDataTable; DataRow newTimeRow; newTimeRow = newDataTable.NewRow(); newTimeRow = var1; newTimeRow = var2;
2
996
by: ERNESTP | last post by:
Hi all, I am starting to learn how to program VB.Net and I found got an problem when try to insert a new row into the table. I had create an form to whole all the DataSet, OleDbDataAdaper and connection. Each adapter will only hold one table and one type of transaction e.g. dsADataGrid (table A use for data grid only), dsA (for select, indert, update ...), dsAMaxCC (for select the maximun value in CC column from table A) I have no...
0
9536
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10468
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10245
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10205
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9063
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7559
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.