Linked Questions

0 votes
1 answer
76 views

I am trying to build a database for managing residents that live in a gated community. The goal is to create a function that makes it easy for a property manager to fill out a form then submit ...
FragUPlenty's user avatar
19 votes
2 answers
3k views

To ask my question effectively, let's first consider the exact scenario I'm facing: General Setup A host iOS 8 app. One or more iOS 8 extensions (WatchKit, Share, etc.) bundled with the host app. ...
jaredsinclair's user avatar
12 votes
5 answers
3k views

I'm having an issue and was hoping that someone could help me out. My issue is that whenever I run the code in the "MainFile", It outputs the two ID's that it has added the entries at, but then when ...
Nathan F.'s user avatar
  • 3,517
7 votes
1 answer
14k views

I want to update the column of a row if the row already exists, but if it doesn't exist yet then I want to insert a new row. Related questions This type of question is popular for SQL in general ...
Suragch's user avatar
  • 517k
4 votes
2 answers
10k views

I have a database with 2 tables like this: cg_resp id | name | email 1 | George | [email protected] id column is primary_key,autoincremented and name is unique and equip_info id | description ...
REALSOFO's user avatar
  • 870
2 votes
1 answer
859 views

We are creating an app wich uses local and remote DB, the information comes from the remote server and if necessary gets stored in the local DB. The problem is, some records, will come again to the ...
darkman's user avatar
  • 1,003
0 votes
2 answers
353 views

I have this code, it reads a csv file for the 2 first columns and appends a list from each row. with open(self.selected_file[0], 'rb') as csv_file: itemids = [] ...
gal almighty's user avatar
0 votes
2 answers
208 views

A mountain of text files (of types A, B and C) is sitting on my chest, slowly, coldly refusing me desperately needed air. Over the years each type spec has had enhancements such that yesterday's typeA ...
zelusp's user avatar
  • 3,728
0 votes
1 answer
75 views

I am trying to create a Admin table.Taking the input from the app and adding it to the table.My admin class is used for getting and setting the values . I tried a lot but unable to identify the issue ...
ThePercept's user avatar
0 votes
0 answers
63 views

SQLite (and other RDBMS, like PostgreSQL) allow you to perform an insert, and if there's a conflict, execute an update instead. However, getting the final value that was updated seems tricky. Take ...
Max's user avatar
  • 5,131