QSqlRecord not updating Database
up vote
0
down vote
favorite
I have the following code which does not seem to work:
model = QSqlTableModel()
model.setTable("clidata")
model.setFilter("recordid=1")
model.select() #Only one record is loaded
record = model.record()
for ndx in range(0, record.count()):
record.setGenerated(ndx, False)
record.setValue("recordid", 1)
record.setValue("companyname", "TEST")
record.setValue("address", "ADDRESS")
record.setValue("taxid", "TAX ID")
record.setValue("active", 2)
model.setRecord(0,record)
model.submitAll()
print(model.lastError().text())
The output for this code indicates that there are No Fields To Update; even though all the fields (except recordid) have changed. Am I missing A step?
python python-3.x pyqt pyqt5
add a comment |
up vote
0
down vote
favorite
I have the following code which does not seem to work:
model = QSqlTableModel()
model.setTable("clidata")
model.setFilter("recordid=1")
model.select() #Only one record is loaded
record = model.record()
for ndx in range(0, record.count()):
record.setGenerated(ndx, False)
record.setValue("recordid", 1)
record.setValue("companyname", "TEST")
record.setValue("address", "ADDRESS")
record.setValue("taxid", "TAX ID")
record.setValue("active", 2)
model.setRecord(0,record)
model.submitAll()
print(model.lastError().text())
The output for this code indicates that there are No Fields To Update; even though all the fields (except recordid) have changed. Am I missing A step?
python python-3.x pyqt pyqt5
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have the following code which does not seem to work:
model = QSqlTableModel()
model.setTable("clidata")
model.setFilter("recordid=1")
model.select() #Only one record is loaded
record = model.record()
for ndx in range(0, record.count()):
record.setGenerated(ndx, False)
record.setValue("recordid", 1)
record.setValue("companyname", "TEST")
record.setValue("address", "ADDRESS")
record.setValue("taxid", "TAX ID")
record.setValue("active", 2)
model.setRecord(0,record)
model.submitAll()
print(model.lastError().text())
The output for this code indicates that there are No Fields To Update; even though all the fields (except recordid) have changed. Am I missing A step?
python python-3.x pyqt pyqt5
I have the following code which does not seem to work:
model = QSqlTableModel()
model.setTable("clidata")
model.setFilter("recordid=1")
model.select() #Only one record is loaded
record = model.record()
for ndx in range(0, record.count()):
record.setGenerated(ndx, False)
record.setValue("recordid", 1)
record.setValue("companyname", "TEST")
record.setValue("address", "ADDRESS")
record.setValue("taxid", "TAX ID")
record.setValue("active", 2)
model.setRecord(0,record)
model.submitAll()
print(model.lastError().text())
The output for this code indicates that there are No Fields To Update; even though all the fields (except recordid) have changed. Am I missing A step?
python python-3.x pyqt pyqt5
python python-3.x pyqt pyqt5
asked Nov 19 at 21:04
Elcid_91
4781722
4781722
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Apparently I misread the setGenerated() method for QSqlRecord as changing the False to True updates the database properly.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Apparently I misread the setGenerated() method for QSqlRecord as changing the False to True updates the database properly.
add a comment |
up vote
0
down vote
Apparently I misread the setGenerated() method for QSqlRecord as changing the False to True updates the database properly.
add a comment |
up vote
0
down vote
up vote
0
down vote
Apparently I misread the setGenerated() method for QSqlRecord as changing the False to True updates the database properly.
Apparently I misread the setGenerated() method for QSqlRecord as changing the False to True updates the database properly.
answered Nov 19 at 21:07
Elcid_91
4781722
4781722
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382606%2fqsqlrecord-not-updating-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown