Use Tidesdk to query mysql (external/localy) - php

i've looked into the tidesdk and found no way to query a local or external mysql database.
is there a way to connect to mysql and query a database/table, maybe via php?
thx for help

Currently there is no native way of accessing MySQL through TideSDK. You are welcome to help us create the native module for TideSDK to access MySQL.

Related

How can I connect to an HSQL database using PHP?

I would like to manipulate an HSQL database using PHP. I have read the documentation regarding HyperSQL and it only shows an example of connecting using Java. How can I connect to an HSQL database in PHP?
You can use the ODBC driver for HSQLDB. The installer is available here.

Converting Oracle code to MySQL

If I have a .php file with some Oracle code previously accessing a Oracle DB, but have setup a MySQL DB and want to edit the existing .php file to be compatible with the MySQL DB, how would I go about doing this? Do I have to manually go through each line and search for the equivalent MySQL statement, and if so, is there a library I can access that gives me the Oracle to MySQL equivalent command?
There is this website with a good compilation of tips and tools to help you out on this task: http://www.sqlines.com/oracle-to-mysql

Connect PHP and Derby Database

Currently I am working with PHP and need to know, if it is possible to connect PHP and Derby database. If yes, anyone can tell me about how to do it? Thanks in advance.
NB: I have read an article about IBM tool, which can be used for connecting both of them. But currently the tools is not downloadable.

Retriving data from MySQL to a HTML

I have installed MySQL server in my machine. I created a database and tables in it. I dont have permission to install any other software. Now I need to retrive the data from database from MySQL in to a HTML. Is it possible to achieve it with out installing PHP or anyother software? If yes, Please let me know the procedure. Thanks in advance.
You can use HTML5 for connection with database.
Here is a link how to do that.
http://www.tutorialspoint.com/html5/html5_web_sql.htm

How to read from CDB (SQLite 3) database using PHP?

I want to read the data from .CDB files which seems to be a SQLite 3 database files. I want to read data and handle it using PHP. Can you please suggest me a solution for that?
I tried ADOdb for PHP where the CDB format is not supporting in SQLite driver.
Thanks in advance.

Categories