answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you select MySQL as a backend database for bsc it project?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Does PHP has frontend and backend?

PHP is a scripting language which handles logical processes based on user input Your frontend would be developed using HTML and CSS and backend developed using a database like MYSQL


How do you retrieve auto increment id in PHP and MySQL?

When creating the MySQL database select "Auto-Increment" on the "Extras" bar.


Can you use mysql instead of sql as backend?

Assuming you have MySQL installed on your server then yes.


How you can take backup of database in mysql?

It is quite easy to back up a database using dbForge Studio for MySQL. To do this, open the tool and connect to the MySQL server. In the database explorer, right-click the database you want to back up and select Backup and Restore > Database Backup. Additionally, the tool allows you to automate the backup process using Task Scheduler.


How do you retrieve data from one MySQL table and create another MySQL table with the same data in it using PHP?

Execute a SELECT INTO statement on the mysql database: INSERT INTO destination_table (id, first_name, last_name) SELECT id, first_name, last_name from source_table;


How do you run a MySQL query from PHP file?

Here is a simple script that you can do to run a MySQL query after you have set a database up. <?php // Database Settings $db['hostname'] = "localhost"; $db['username'] = "<db username>"; $db['password'] = "<db password>"; $db['database'] = "<db name>"; // Connect to MySQL $connect = mysql_connect($db['hostname'], $db['username'], $db['password']); // Select Database mysql_select_db($db['database'], $connect); // Do MySQL Query mysql_query("INSERT INTO table_name SET field_name = '1234567890'"); // Close MySQL mysql_close($connect); ?> Obviously you will need to use your own MySQL settings and database details, but this gives you a general overview of how you can do it.


How do you create a new database in MySQL?

The MySQL command is "CREATE DATABASE [dbname]" with "[dbname]" replaced with your desired database name.


What type of database is used in Friendster?

MYSQL database


What is the database not found error in PHP with MySQL?

It would mean the database you are trying to select in your PHP script couldn't be found, you will need to check to see if you are using the correct details.


How can you rename Database name in MySQL?

In MySQL, there is a special command for it: RENAME DATABASE x TO y However, if you are using MySQL version older than 5.1, you can't use this command. This command is only available for MySQL versions >= 5.1 See how to do it at the Related Links bellow!


What is MyISAM in MySQL?

MyISAM is the default table engine in the MySQL database.


How do you retrieve the data from database?

To retrieve data rfrom a mysql database you first need to connect to the database using the mysql connection string(mysql_connect) after that, it's just a matter of executing a query of "SELECT `field1`, `field2` FROM `tablename`" Obviously replacing field 1 and 2 with the fields you want to replace and tablename with the table the data is stored