473,386 Members | 1,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 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 3507
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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...
0
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,...
0
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...

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.