Android app, SQL database, and QR Codes
Closed
BrianGreen
Ambucias
- Posts
- 1010
- Registration date
- Saturday January 17, 2015
- Status
- Moderator
- Last seen
- September 30, 2021
Ambucias
- Posts
- 47366
- Registration date
- Monday February 1, 2010
- Status
- Moderator
- Last seen
- September 1, 2021
Related:
- Android qr code scanner with database
- Qr code database app - Best answers
- Qr코드 데이터베이스 - Best answers
- Scan QR code: iPhone, Android, from picture - Guide
- Wifi qr code password scanner - Guide
- Android reset code - Guide
- Android test code huawei - Guide
- How to increase volume in android phone code - Guide
3 replies
Set the Back end TO QUERY the DB, not write to it. The SQL statement does this. Use a SELECT statement.
If the platform you are using allows for account control, set the APP to a USER that only has READ ONLY access. Never allow the APP to connect on an account that has full.
Now, if the account is set to read, all the user can do is scrape the data out, and never can alter it.
What platform are you using already?
If the platform you are using allows for account control, set the APP to a USER that only has READ ONLY access. Never allow the APP to connect on an account that has full.
Now, if the account is set to read, all the user can do is scrape the data out, and never can alter it.
What platform are you using already?
Ambucias
Aug 6, 2018 at 06:11 PM
- Posts
- 47366
- Registration date
- Monday February 1, 2010
- Status
- Moderator
- Last seen
- September 1, 2021
Aug 6, 2018 at 06:11 PM
With all due respect, I suggest that the easiest way to create the app would be to use Android Studio for any type of Android devices.
BrianGreen
Updated on Aug 7, 2018 at 09:40 AM
- Posts
- 1010
- Registration date
- Saturday January 17, 2015
- Status
- Moderator
- Last seen
- September 30, 2021
Updated on Aug 7, 2018 at 09:40 AM
Just took a quick look at that and it looks like its just what I need. I will take a closer look tomorrow and see where it takes me. Hopefully a new plethera of apps will soon be on the market!
I think you get todays beer, but ac3mark also gets one as well. Thank you both fo your help.
I think you get todays beer, but ac3mark also gets one as well. Thank you both fo your help.
Ambucias
Aug 7, 2018 at 05:43 PM
- Posts
- 47366
- Registration date
- Monday February 1, 2010
- Status
- Moderator
- Last seen
- September 1, 2021
- Posts
- 1010
- Registration date
- Saturday January 17, 2015
- Status
- Moderator
- Last seen
- September 30, 2021
Aug 7, 2018 at 05:43 PM
As they pipe and say in the Royal Navy: "Up spirits!"
Ambucias
Aug 6, 2018 at 05:38 PM
- Posts
- 47366
- Registration date
- Monday February 1, 2010
- Status
- Moderator
- Last seen
- September 1, 2021
Aug 6, 2018 at 05:38 PM
Greetings Brian
Who would be the potential users and for what purpose ? What kind of business is it? You should give more details, as you explain it, you make it mysterious. Will you app be published on Android ?
How did you manage to inherit this new challenging project for which you have little or no knowledge ?
Who would be the potential users and for what purpose ? What kind of business is it? You should give more details, as you explain it, you make it mysterious. Will you app be published on Android ?
How did you manage to inherit this new challenging project for which you have little or no knowledge ?
BrianGreen
Aug 6, 2018 at 06:07 PM
- Posts
- 1010
- Registration date
- Saturday January 17, 2015
- Status
- Moderator
- Last seen
- September 30, 2021
Aug 6, 2018 at 06:07 PM
Hi Ambucias,
I have recently joined a slimming club and just want a quick way of scanning a barcode when in the shop and seeing how many points the slimming club thinks it has. I know there are hundreds of products out there, but I am hoping the idea might get a little help from some trusted helpers who will be able to advise on food items. It will be destributed for free to the club members.
Currently there is a book which members use to look up the foods they buy, but this requires a lot of pre-shopping planning. This app has the advantage that on the days that you just get in late and need something to eat you can scan what you have in the fridge and count the points easily.
If this works it could be multi-club compatible, but Im starting small and just want this for me at the moment - using the foods I already have in the fridge.
I have recently joined a slimming club and just want a quick way of scanning a barcode when in the shop and seeing how many points the slimming club thinks it has. I know there are hundreds of products out there, but I am hoping the idea might get a little help from some trusted helpers who will be able to advise on food items. It will be destributed for free to the club members.
Currently there is a book which members use to look up the foods they buy, but this requires a lot of pre-shopping planning. This app has the advantage that on the days that you just get in late and need something to eat you can scan what you have in the fridge and count the points easily.
If this works it could be multi-club compatible, but Im starting small and just want this for me at the moment - using the foods I already have in the fridge.
Aug 6, 2018 at 05:43 PM
Im not using anything just yet - this will be my first android app attempt, so I really have no idea what Im doing - in fact I dont even know what language I will be using to build it.
Aug 6, 2018 at 05:53 PM
SO, so far, you will need a client device (app), and a server to handle web request. The web server will serve the client, and send commands to the DB server. The DB server will run a stored procedure, and send the product (listing) back to the Webserver, who will send it to the client. There is a 10K foot view of the wireframe!
Have FUN!