answersLogoWhite

0

Yes. Several possibilities exist. ODBC, JDBC, and others. For Oracle, OCI, Pro*C, and others. Consult the database vendor's developer documentation, and you will find something. Unfortunately, this is too broad a topic to be answered easily here, other than this, except to list high level options.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Make programme for multification of three no in c plus plus?

result = a * b * c;


What are the steps to execute a c plus plus programme?

Build it, link it, run it.


C plus plus Builder 5 Queries and Database Grids?

thanks


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.


Can a user compile c programme using c plus plus compiler?

Usually, but not always. For example the following is legal in C, but illegal in C++: char new [3] = "ABC";


How do you edit a node in linked list C plus plus?

oh well. it is like this


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.


Mini project on employee database using linked list on c language code?

mini project data structure


How do you write a programme to print a plus bi in c plus plus?

#include <iostream> int main() { std::cout << "a plus bi" << std::endl; return 0; }


How do you use this function in c programme?

I don't use that function in C programme.


Write a c plus plus programme to illustrate single inheritance?

struct A {}; // base class struct B : A {} // derived class (single inheritance).


Is C plus plus interpreted as the program is executed?

No. Neither C nor C++ are interpreted. Both need to be compiled and linked to produce highly-optimised machine code, which is then executed.