Advice needed on simple app.

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
d.m.holdawayGA2553
Posts: 81
Joined: Mon Jan 09, 2012 4:48 pm

Advice needed on simple app.

Post by d.m.holdawayGA2553 » Wed Jul 04, 2012 10:02 am

Hello,

i am just looking for some advice on a app that i want to build.

i need to pull data from a file that contains

Name, email, phone number

the data then populates a field
the user can then select the records that he wants and can move them to another field ( filter)
then the user can save that field

any advice is welcome, my real question is

i have started it and i can populate the field with a txt file, but should i be using a database such as SQL?

Mark
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 5150
Joined: Thu Feb 23, 2006 9:24 pm
Contact:

Re: Advice needed on simple app.

Post by Mark » Wed Jul 04, 2012 10:45 am

Hi,

You should be using MySQL if you think that a text file is or will be too slow, too big, or otherwise impratical. If your app only needs a way to store data locally then a text file may be sufficient. A text file would be Impractical if e.g. you want to share the same data with many LiveCode-based client apps, if you want to share the data with other software and if you want to use the data in a website.

Kind regards,

Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode

d.m.holdawayGA2553
Posts: 81
Joined: Mon Jan 09, 2012 4:48 pm

Re: Advice needed on simple app.

Post by d.m.holdawayGA2553 » Wed Jul 04, 2012 10:59 am

mark,

thanks thats really helpful, i am hoping to build a ios based app that will capture the data, send it back to the database then make lists from it.. and send the data back out....

i think its going to be tough but if i plan it well enough then i think i can do it.

townsend
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 430
Joined: Sun Feb 13, 2011 8:43 pm

Re: Advice needed on simple app.

Post by townsend » Wed Jul 04, 2012 3:33 pm

Mark-- would it be simpler if he used liveCode's built in database, SQLite?
That is if he doesn't need to share the db with other users.

Mark
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 5150
Joined: Thu Feb 23, 2006 9:24 pm
Contact:

Re: Advice needed on simple app.

Post by Mark » Wed Jul 04, 2012 3:52 pm

Hi,

SQLite isn't simple, but it would be an option.

Kind regards,

Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode

Post Reply