Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is titanium desktop application supports PHP and mysql? or using an ajax? Should I use xampp to do this? or any suggestions you have.

Thank you very much

share|improve this question

4 Answers

up vote 3 down vote accepted

Yes, they support PHP, and as I know, no, they don't support mySQL.

But, they support a SQL database, using SQLite.

mySQL is a database server, made for various users and huge programs. Titanium is made for local (Desktop and mobile) apps, and it uses SQLite for databases.

SQLite is smaller than MySQL, don't use "users", saves databases as single files, and is a normal relational SQL database, so, you can easely port your SQL program to work in Titanium.

SQLite docs

SQLite reference

Titanium Database API

share|improve this answer

According to their official page here they do support PHP. Don't know about MySql or Ajax.

share|improve this answer

You can use Ruby, PHP or Python even if I think mostly of the tasks can be done using simple js (Titanium exposes a lot of platform related api as js objects). You can also mix those languages.

share|improve this answer

if you use phpinfo() and print output into your debug window you will see that PHP on Titanium Desktop has mysql extensions compiled on it + PDO. In that way you can connect to mysql server directly via PHP. Also new mysqlnd extension is available for less memory usage. Many extensions are available: SOAP, xslt, simplexml, curl etc... And PHP 5.3.1. You can also load external extension via dl() if they are compiled at same PHP API Level and for the same architecture (32/64 bit).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.