answersLogoWhite

0

Can you use mysql instead of sql as backend?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

Assuming you have MySQL installed on your server then yes.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you use mysql instead of sql as backend?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you select MySQL as a backend database for bsc it project?

That depends on your project. If your project has simple database, tables and queries then mysql would be the ideal choice. If there is complexity involved then use of mysqli or PDO is better.


How do you migrate MySQL 4.0 to MySQL 5.0?

IIRC mysql5 supports import of mysql4 data and structures natively (you can use mysql4 compatability when exporting sql data from phpmyadmin)


Is MySQL a server?

MySQL is an open source relational database management system based on SQL queries. It was developed by the Swedish company MySQL AB and is now a subsidiary of Oracle Corporation. Your could use a MySQL Client, for example dbForge Studio for MySQL, to install and connect to MySQL Server as a first steps to get started with MySQL.


Is MySQL hosting avilable for personal use?

Yes your SQL hosting is usually available for personal use. Some SQL hosting may not be available for personal use because of which plan you have. In most cases you may use it for your own personal use.


How are PHP and MySQL compatible?

By sending messages to the MySQL server, you can communicate with the database. To submit SQL queries to the database, you use PHP functions. You don't need to know how to communicate with MySQL because PHP takes care of that. You only need to be familiar with SQL queries and PHP functions. To learn more about data science please visit- Learnbay.co


Database application programming interface for C plus plus?

This IDE is easy to use and created specifically for C and C++. SQLAPI++ is a C++ library for accessing various SQL databases (essentially a set of header files) (Oracle, SQL Server, DB2, Sybase, Informix, InterBase, SQLBase, MySQL, PostgreSQL, SQLite, SQL Anywhere and ODBC). It is simple to use and implement. To learn more about data science please visit- Learnbay.co


How do you retrieve an image from a database using PHP?

It depends what Database you are using. I personally use MySQL so will explain how you would do it using MySQL. You would have to create the MySQL database. I would store the image URL rather than the actual image. Then call it using PHP and a MySQL query. For Example: $sql = "SELECT * FROM Images WHERE Img_Name = 'img1'"; $query = mysql_query($sql); $array = mysql_fetch_array(query); then you would call it into HTML like so:


What host do you use when your MySQL database is on a separate server to your PHP scripts?

For the host you need to put the IP address of the MySQL server instead of localhost.


Is there anyway to convert filemaker databases into c plus plus or Visual Basic files?

Not that I'm aware of. But since Filemaker is a database, you can use C++ to access the database just as you would use C++ to create SQL queries on an SQL database. Think of Filemaker as being the backend to your C++ program.


How to use strings with PHP and MySQL?

If you will see this example as below, this may help. <?php $string = mysql_real_escape_string($string); $sql = "insert into stringtable(mystring) values('$string')"; ?>


What can I do to make a webpage using only HTML which is related to social networking sites?

You need to use backend tools also to save the data. A DB like SQL or Oracle could work with it.


What should you learn to query a data base?

To query databases, one should learn the Structured Query Language (SQL). While most versions of databases havedifferentsyntaxes (usually by way of adding "extensions" to the SQL standard), learning SQL will provide most of what one would need to know to learn how to use a specific database product, such as MySQL, Access (T-SQL), and Oracle (PL/SQL).