answersLogoWhite

0

you might not be able to because theres a diffrent years, 2008 is old u will need a new version.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Does the C plus plus programming language use a virtual machine?

No, it does not. But Microsoft Visual Studio 2008 allows you to connect to a virtual machine and run your projects "sandboxed".


C plus plus Builder 5 Queries and Database Grids?

thanks


Difference between sql and sql plus?

SQL*PLUS is a interface between user and Oracle database. It Provide an environment to use the SQL which is a query language to communicate with oracle database


What is the command to mount the database?

To mount a database in Oracle, you can use the SQL command: ALTER DATABASE MOUNT;. This command is typically executed in SQL*Plus or a similar Oracle database interface after you have connected to the database instance. Mounting the database allows the Oracle instance to read the control files and prepare to open the database.


What is the main use of B and B plus trees in database?

For queries.


Difference between SQL plus and ISQL plus?

iSQL*Plus is a browser-based implementation of SQL*Plus. You can use it to connect to an Oracle database system over the Internet to perform the same tasks as those that are performed through the SQL*Plus command line. The iSQL*Plus implementation uses a Web browser, an Oracle HTTP Server with the iSQL*Plus Server, and an Oracle database.


Do you need motion plus controllers for the motion plus?

No, you just connect the Wii remote to the Motion Plus.


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.


What is the relationship between database and c plus plus?

There is none. While you can access databases from C++, the two concepts are fundamentally different.


How does oracle differ from c plus plus?

The first in a company developping a well-known database system, the second is a programming language.


Were does the plus on a car battery connect to?

The plus is Positive + and it connects to the Red cable which connects to the starter.


Can you connect to database in unix environment using c or c plus plus languages?

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).