Page 1 of 1

Not Available

Posted: Sat May 14, 2011 7:51 pm
by dburdan
Not Available

Re: Make a collaboration app.

Posted: Sun May 22, 2011 12:28 am
by Mark
Dacri,

Use MySQL.

Mark

Re: Make a collaboration app.

Posted: Sun May 22, 2011 12:42 am
by Dixie
Hi...

Page 14 'LiveCode iOS 4.6.pdf' under the heading 'What doesn't work'.. dbMysql, dbPostgreSQL, dbODBC and custom externals (planned for a future release)

be well

Dixie

Re: Make a collaboration app.

Posted: Sun May 22, 2011 12:47 am
by Mark
Dixie,

That doesn't matter. Use PHP or any other server-side language as a layer between LC and the database.

Mark

Re: Make a collaboration app.

Posted: Sun May 22, 2011 12:05 pm
by Klaus
Hi friends,

nevertheless MySQL is supported on iOS with starting LiveCode version 4.6.1 :)


Best

Klaus

Re: Make a collaboration app.

Posted: Tue May 24, 2011 5:30 pm
by dburdan
Thank you for all of your responses! However, my issue isn't with storing the data as I understand PHP and MYSql fluently, my issue is with converting checkboxes, textfields, etc into data that can be stored on the server. The user also needs to be able to create more textboxes and such.

All help is much appreciated,
Thanks

Re: Make a collaboration app.

Posted: Wed May 25, 2011 12:49 am
by BvG
a checkbosx is true or false, and therefore a boolean value in a db.
a text field is text and therefore text in a db.
etc.

it's quite easy to think about but hard to do ;)