Not able to 'Open the Tools menu and select Components'

shekman

Member
Licensed User
Longtime User
I am trying to follow along with the tutorial on how to incorporate a database into an app from this link: Using a library in your Basic4ppc project. But my IDE does not have the 'Components' option under Tools. Any help pointing me to this would be greatly appreciated. Thanks,:sign0163:
 

shekman

Member
Licensed User
Longtime User
Thank you for getting back to me so soon. I have decided that for my app I need to synch the app with a database on a web server and NOT SQLite as the dbase is on a specific website. I keep ending up at the tutorial: Connect Android to MySQL Database Tutorial, which is great but need to see a more complete php script that shows more to connect. I.e what goes here:

$query = file_get_contents("php://input");
$sth = mysql_query($query);

if (mysql_errno()) {
header("HTTP/1.1 500 Internal Server Error");
echo $query.'\n';

Thanks again :sign0085:
 
Upvote 0
Top