answersLogoWhite

0

At the simplest level, a database is simply a data container. As such an array can be considered a database. However, when we think of a database we usually imagine a container that combines one or more related tables of data, that allows us to easily modify data, to search for data, and so on. Databases are typically disk-based centralised repositories (data servers) containing a massive amount of data, while end-users (data clients) are really only concerned with a small amount of that data (a subset). Data can also be generated by the database, such as when returning the number of records in the database that match a specified criteria.

Database Management Systems (DBMS) are the simplest way to make and use a database as all the functionality you need is readily available, all you need do is connect to the DBMS and query it, typically using a text-based script such as SQL (structured query language). MySQL is a popular choice because it is open source and can be used under the terms of the Gnu Public Licence (GPL).

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Engineering

How do you connect visual basic 6.0 access database using module and data environment?

There are several ways to connect Visual Basic 6.0 access databases, but to use module and data environment equipment, one must obtain access to the actual program to download first.


I made a database using xampp at localhost phpmyadmin i made a form in visual basic and i want it to connect to my database do you know how to do it?

no, I don't


Does database software store information in HTML codes?

No, database software does not store data using Hyper Text Markup Language (HTML) codes. A common code used to access data is Structured Query Language (SQL). HTML is a formatting language that will tell a browser how to display the data retrieved from a database.


How can you connet java with sql in java programming?

JDBC mean Java Database Connectivity. In java, using JDBC drivers, we can connect to database. Steps to connect to JDBC. 1) Load the driver, using Class.forName(DriverName); 2) Get the connection object, Connection con = Driver.getConnection(loaded driver name); 3) Create a SQL statement, Statement s = con.createStatement(); 4) Create Resultset object using the statement created above, ResultSet rs = s.executeQuery("sql statement"); Iterate the result set to get all the values from the database. Finally don't miss this 5) s.close(); 6) con.close() ;


Database accessing using C?

It is possible, but you have to know what kind of database do you want to access, as well as the opearting system and C-compiler your are using.

Related Questions

How do you connect to a database and table using ADODB?

How do you connect to a database and table using ADODB?


Can you create a database with only a form?

Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.


How do you connect to a database using unix command?

There isn't a generic Unix command to connect to a database. The actual commands are based on the database package you are using, such as Oracle, SyBase, etc. They each have their own commands for gaining access to the database.


How do you connect oracle database in javascript?

By using ODBC


How do you connect databases?

TO connect database two things are require: 1) JDBC driver 2) ognl.jar Using these two we can create a database connection.


How do you connect visual basic 6.0 access database using module and data environment?

There are several ways to connect Visual Basic 6.0 access databases, but to use module and data environment equipment, one must obtain access to the actual program to download first.


I made a database using xampp at localhost phpmyadmin i made a form in visual basic and i want it to connect to my database do you know how to do it?

no, I don't


How do you add a file to an website in connect with a database using aspnet with c?

Via FTP.


How can you connect to an Oracle database using PHP?

Is there an ODBC driver available for your Oracle database? If so, the ODBC functions may be the way to go.


How is database technology used in web based shopping and trading?

There are a few different ways that you can connect depending on what database you choose. Most of your major Enterprise DBMSs allow you to connect using an IP address, a database name, a valid user name and password.


How do you import others codes in java?

using servlets, php, and database we can connect import codes into java


How do you connect to mysql using vb6?

Install the MyODBC database connector.Set up an new ODBC connection to your mysql database in Windows. (This will vary based on your version of Windows)You can use the ADODB extension in VB to connect to your ODBC connection.