472,784 Members | 961 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,784 software developers and data experts.

Update to child table fails

Hello,
I have 2 tables with a relationship set up in the dataset with vb
..net. I add a new record to the parent table then edit an existing child
record to have the new parent ID. However when I do the update the changed
parentid in the child table fails to change. No error is given its just that
the change is not written to the Database.

When I step through the records for the child table the one I would expect
to be changed has a row state of Unchanged!

Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent table
record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try
Nov 21 '05 #1
5 3433
Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@news6.svr.pol.co.uk...
Hello,
I have 2 tables with a relationship set up in the dataset with vb
.net. I add a new record to the parent table then edit an existing child
record to have the new parent ID. However when I do the update the changed
parentid in the child table fails to change. No error is given its just
that the change is not written to the Database.

When I step through the records for the child table the one I would expect
to be changed has a row state of Unchanged!
I assume that right after you assign the id of the new parent to an existing
child row that that row will have a Modified RowState (you could also use
SetParentRow). So at what point does the RowState change back to Unchanged
?

How did you add the relation ? Make sure you don't set Accept/Reject rule to
Cascade.

Also never call AcceptChanges between fill and update because that will also
change the RowState to Unchanged.

Anyways, RowSate of the modified child row should be Modified before the
Update, it's something to look into.

If you can't find the problem post all relevant code.

HTH,
Greetings


Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent table
record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try

Nov 21 '05 #2
Thanks Bart, I'll look at that ASAP.
Paul

----- Original Message -----
From: "Bart Mermuys" <bm*************@hotmail.com>
Newsgroups:
comp.lang.basic.visual.database,microsoft.public.d otnet.languages.vb
Sent: Tuesday, October 25, 2005 10:01 PM
Subject: Re: Update to child table fails

Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@news6.svr.pol.co.uk...
Hello,
I have 2 tables with a relationship set up in the dataset with vb
.net. I add a new record to the parent table then edit an existing child
record to have the new parent ID. However when I do the update the
changed parentid in the child table fails to change. No error is given
its just that the change is not written to the Database.

When I step through the records for the child table the one I would
expect to be changed has a row state of Unchanged!


I assume that right after you assign the id of the new parent to an
existing child row that that row will have a Modified RowState (you could
also use SetParentRow). So at what point does the RowState change back to
Unchanged ?

How did you add the relation ? Make sure you don't set Accept/Reject rule
to Cascade.

Also never call AcceptChanges between fill and update because that will
also change the RowState to Unchanged.

Anyways, RowSate of the modified child row should be Modified before the
Update, it's something to look into.

If you can't find the problem post all relevant code.

HTH,
Greetings


Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent table
record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try


Nov 21 '05 #3
Hello,
tried the things below with no luck. The parent & child tables are
held within a single dataset, the tables (dataset) are exact mirrors of
their base tables in the MS Access database I am using. In the Db I have a 1
to many relationship (ref int switched on) between parent & child. The
relationship is also defined in the dataset as well.

The problem appears to be this:
(1) I add a new record in the parent (dataset), say this gives me an ID=1667
(2) I find the child record (dataset) that had the old parentID (eg 1666)
and update to the value of the new parentID value (1667). This I can do
under the rules of referential integrity.
(3) So now I have a record in the parent table (dataset) with an ID = 1667
and a related record in the child table (ParentID=1667). As I havn't done a
dataAdaptor.Update call yet MS Access is out of the picture.
(4) I then call the dataAdaptor.Update call for the parent table, this works
OK.
(5) I then call the dataAdaptor.Update call for the CHILD table, this is
when I get the error about must having a related record in the parent table.
(6) If I remove the relationship between Parent & Child in both MS Access
and the dataset schema the code goes through without an error. However when
I look at the Parent & Child tables in MS Access a new record has been added
to the table but it does not have the ID it was allocated by vb .net.
(8) When I remove the relationship in MS Access only the code again goes
through without an error and the same result as in point (6).
(9) When I look in the Child table the record has had the value of the
ParentID changed to 1667 but there is no record with an ID=1667 in the
Parent table because MS Access allocated a different ID when inserting the
new record into the Parent table.
(10) Now I understand the vb .net and MS Access will allocate autonumber
fields differently I thought the values would be synchronised? So when the
parent table gets a new record ID from MS Access either it or ado .net
wwould change the child ParentID field to the new value.

Any help would be much appreciated....

Thanks
Paul

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@newsg4.svr.pol.co.uk...
Thanks Bart, I'll look at that ASAP.
Paul

----- Original Message -----
From: "Bart Mermuys" <bm*************@hotmail.com>
Newsgroups:
comp.lang.basic.visual.database,microsoft.public.d otnet.languages.vb
Sent: Tuesday, October 25, 2005 10:01 PM
Subject: Re: Update to child table fails

Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@news6.svr.pol.co.uk...
Hello,
I have 2 tables with a relationship set up in the dataset with vb
.net. I add a new record to the parent table then edit an existing child
record to have the new parent ID. However when I do the update the
changed parentid in the child table fails to change. No error is given
its just that the change is not written to the Database.

When I step through the records for the child table the one I would
expect to be changed has a row state of Unchanged!


I assume that right after you assign the id of the new parent to an
existing child row that that row will have a Modified RowState (you could
also use SetParentRow). So at what point does the RowState change back
to Unchanged ?

How did you add the relation ? Make sure you don't set Accept/Reject rule
to Cascade.

Also never call AcceptChanges between fill and update because that will
also change the RowState to Unchanged.

Anyways, RowSate of the modified child row should be Modified before the
Update, it's something to look into.

If you can't find the problem post all relevant code.

HTH,
Greetings


Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent table
record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try



Nov 21 '05 #4
Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dk*********@newsg3.svr.pol.co.uk...
Hello,
tried the things below with no luck. The parent & child tables are
held within a single dataset, the tables (dataset) are exact mirrors of
their base tables in the MS Access database I am using. In the Db I have a
1 to many relationship (ref int switched on) between parent & child. The
relationship is also defined in the dataset as well.

The problem appears to be this:
(1) I add a new record in the parent (dataset), say this gives me an
ID=1667
(2) I find the child record (dataset) that had the old parentID (eg 1666)
and update to the value of the new parentID value (1667). This I can do
under the rules of referential integrity.
(3) So now I have a record in the parent table (dataset) with an ID = 1667
and a related record in the child table (ParentID=1667). As I havn't done
a dataAdaptor.Update call yet MS Access is out of the picture.
(4) I then call the dataAdaptor.Update call for the parent table, this
works OK.
(5) I then call the dataAdaptor.Update call for the CHILD table, this is
when I get the error about must having a related record in the parent
table.
(6) If I remove the relationship between Parent & Child in both MS Access
and the dataset schema the code goes through without an error. However
when I look at the Parent & Child tables in MS Access a new record has
been added to the table but it does not have the ID it was allocated by vb
.net.
(8) When I remove the relationship in MS Access only the code again goes
through without an error and the same result as in point (6).
(9) When I look in the Child table the record has had the value of the
ParentID changed to 1667 but there is no record with an ID=1667 in the
Parent table because MS Access allocated a different ID when inserting the
new record into the Parent table. (10) Now I understand the vb .net and MS Access will allocate autonumber
fields differently I thought the values would be synchronised? So when the
parent table gets a new record ID from MS Access either it or ado .net
wwould change the child ParentID field to the new value.
Yes, the autonumber can be different inside the DataTable and db, when you
do an update you can retrieve the db generated pk, but this doesn't happen
automatically and it is handled differently for sqlsever and access(jet).

For access you need to add an eventhandler to the
OleDbDataAdapter.RowUpdated event and use an OleDbCommand to do a query like
"SELECT @@IDENTITY" to get the new pk.

See
http://msdn.microsoft.com/library/de...anidcrisis.asp
Scroll to Microsoft Access/JET Issues

Once the parent DataRow gets updated with the new pk it should automatically
update all related child DataRow's when there is a relation (in DataSet)
between them and UpdateRule is Cascade (which is the default).
HTH,
Greetings

Any help would be much appreciated....

Thanks
Paul

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@newsg4.svr.pol.co.uk...
Thanks Bart, I'll look at that ASAP.
Paul

----- Original Message -----
From: "Bart Mermuys" <bm*************@hotmail.com>
Newsgroups:
comp.lang.basic.visual.database,microsoft.public.d otnet.languages.vb
Sent: Tuesday, October 25, 2005 10:01 PM
Subject: Re: Update to child table fails

Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@news6.svr.pol.co.uk...
Hello,
I have 2 tables with a relationship set up in the dataset with
vb .net. I add a new record to the parent table then edit an existing
child record to have the new parent ID. However when I do the update
the changed parentid in the child table fails to change. No error is
given its just that the change is not written to the Database.

When I step through the records for the child table the one I would
expect to be changed has a row state of Unchanged!

I assume that right after you assign the id of the new parent to an
existing child row that that row will have a Modified RowState (you
could also use SetParentRow). So at what point does the RowState change
back to Unchanged ?

How did you add the relation ? Make sure you don't set Accept/Reject
rule to Cascade.

Also never call AcceptChanges between fill and update because that will
also change the RowState to Unchanged.

Anyways, RowSate of the modified child row should be Modified before the
Update, it's something to look into.

If you can't find the problem post all relevant code.

HTH,
Greetings

Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent
table record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try



Nov 21 '05 #5
Hello,
I tried using the Dataset.OnUpdate event but (probably I am using
transaction and havnt committed yet) selecting the max value for the ID
field in the parent table just returns the value that was the highest value
before I started to do anything. I assume by commiting first I would then be
able to get the new ID value but I dont want to do that as I want the update
to go through or if problems be able to roll things back ie I dont want to
leave the DB in an inconsistent state.

Cheers
Paul M

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dk*********@newsg3.svr.pol.co.uk...
Hello,
tried the things below with no luck. The parent & child tables are
held within a single dataset, the tables (dataset) are exact mirrors of
their base tables in the MS Access database I am using. In the Db I have a
1 to many relationship (ref int switched on) between parent & child. The
relationship is also defined in the dataset as well.

The problem appears to be this:
(1) I add a new record in the parent (dataset), say this gives me an
ID=1667
(2) I find the child record (dataset) that had the old parentID (eg 1666)
and update to the value of the new parentID value (1667). This I can do
under the rules of referential integrity.
(3) So now I have a record in the parent table (dataset) with an ID = 1667
and a related record in the child table (ParentID=1667). As I havn't done
a dataAdaptor.Update call yet MS Access is out of the picture.
(4) I then call the dataAdaptor.Update call for the parent table, this
works OK.
(5) I then call the dataAdaptor.Update call for the CHILD table, this is
when I get the error about must having a related record in the parent
table.
(6) If I remove the relationship between Parent & Child in both MS Access
and the dataset schema the code goes through without an error. However
when I look at the Parent & Child tables in MS Access a new record has
been added to the table but it does not have the ID it was allocated by vb
.net.
(8) When I remove the relationship in MS Access only the code again goes
through without an error and the same result as in point (6).
(9) When I look in the Child table the record has had the value of the
ParentID changed to 1667 but there is no record with an ID=1667 in the
Parent table because MS Access allocated a different ID when inserting the
new record into the Parent table.
(10) Now I understand the vb .net and MS Access will allocate autonumber
fields differently I thought the values would be synchronised? So when the
parent table gets a new record ID from MS Access either it or ado .net
wwould change the child ParentID field to the new value.

Any help would be much appreciated....

Thanks
Paul

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@newsg4.svr.pol.co.uk...
Thanks Bart, I'll look at that ASAP.
Paul

----- Original Message -----
From: "Bart Mermuys" <bm*************@hotmail.com>
Newsgroups:
comp.lang.basic.visual.database,microsoft.public.d otnet.languages.vb
Sent: Tuesday, October 25, 2005 10:01 PM
Subject: Re: Update to child table fails

Hi,

"PAUL" <pa**@nospam.wanadoo.co.uk> wrote in message
news:dj**********@news6.svr.pol.co.uk...
Hello,
I have 2 tables with a relationship set up in the dataset with
vb .net. I add a new record to the parent table then edit an existing
child record to have the new parent ID. However when I do the update
the changed parentid in the child table fails to change. No error is
given its just that the change is not written to the Database.

When I step through the records for the child table the one I would
expect to be changed has a row state of Unchanged!

I assume that right after you assign the id of the new parent to an
existing child row that that row will have a Modified RowState (you
could also use SetParentRow). So at what point does the RowState change
back to Unchanged ?

How did you add the relation ? Make sure you don't set Accept/Reject
rule to Cascade.

Also never call AcceptChanges between fill and update because that will
also change the RowState to Unchanged.

Anyways, RowSate of the modified child row should be Modified before the
Update, it's something to look into.

If you can't find the problem post all relevant code.

HTH,
Greetings

Basically in the child table I have at the start:

ParentID
1664
1665
1666 <------ParentID to change
---------

1666 parentid gets changed to -1 as thats the new ID of the parent
table record, the -1 being a temporary placeholder.

The parent table record goes in fine and is there when I look in the
database after the update has been done.
Update code
Try

daAffectedObjects.DeleteCommand.Transaction = trnMain

daAffectedObjects.InsertCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.Transaction = trnMain

daAffectedObjects.UpdateCommand.CommandText = _

"UPDATE tblAffectedObjects " & _

"SET Archived = ?, CheckedOutBy = ?, CheckedOutDatabase = ?, " & _

"CheckedOutDate = ?, Description = ?, IssueID = ?, ObjectID = ?, " & _

"CheckedInDate = ? " & _

"WHERE ID = ?"
daAffectedObjects.Update(dsIssue, "tblAffectedObjects")
Catch dbcx As DBConcurrencyException

createMessage(dbcx)

Catch err As Exception

MsgBox(Me.Name & _

System.Reflection.MethodBase.GetCurrentMethod().Na me & vbCrLf & _

"Affected objects update failed - can not update issue" & vbCrLf & _

"Description : " & err.ToString & vbCrLf & _

"Line Number : " & Erl())

trnMain.Rollback()

btnUpdate.Enabled = True

btnCancel.Enabled = True

If OleDbConnection1.State = ConnectionState.Open Then

OleDbConnection1.Close()

End If

Exit Sub

Finally

End Try



Nov 23 '05 #6

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

Similar topics

0
by: Fraser Hanson | last post by:
Hello, I have a table which has a foreign key relationship with itself. I want and expect my updates to cascade (deletes definitely cascade as expected) but instead I just get error 1217:...
2
by: Ralph Smith | last post by:
I'm having trouble copying a database to another machine. Here are the two table's in ths database and the sql commands: DROP TABLE IF EXISTS `clients`; CREATE TABLE `clients` ( `client_id`...
2
by: Richard | last post by:
Hi, I have 1 dataset with 2 tables (Table1 as parent, Table2 as Child), 1 row in both the tables. I am updating it with a transaction. First parent then child. When child update fails, it raise...
3
by: PAUL | last post by:
Hello, I have 2 datasets I am trying to update. The parent table seems to update fine but when I go update the chiled table I get an error message that says I need a related record in the parent...
3
by: dbuchanan | last post by:
Hello, (Windows forms - SQL Server) I fill my datagrid with a stored procedure that includes relationships to lookup tables so that users can see the values of the combobox selections rather...
3
by: fuimens | last post by:
Hi, With mysql-4.0.20, I have a problem inserting data with foreign key references, MySQL saying ERROR 1216: Cannot add or update a child row: a foreign key constraint fails The message is...
13
by: dennis | last post by:
Hello, I'm having trouble solving the following problem with DB2 UDB 8.2. I need to create a trigger that performs certain extra constraint validations (temporal uniqueness). One of the tables...
2
by: Michael D. Reed | last post by:
I am using ClickOnce to distribute a program. It works well except for one detail. When a new version is installed, the program does not initialize properly immediately after the update. The...
1
by: nitinkhare1 | last post by:
Please help,I'm very frustated. when I ADD the data in kn_history_question table of htbase_tst database....it giving the error "Cannot add or update a child row:a foreign key constraint...
0
by: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.