Can I Use Database In C++?
I would like to use database in c++ programs. Can i able to do c++ programs with any sql (oracle/ ms access/ my MySQL....).
1 Answer - Sort by: Date | Rating
Well this actually depends on number of things, first thing that you need to do is to choose which API. You will need. You can choose among the following.
* Embedded SQL (ESQL)
* ODBC
* ADO
* OLE/DB and many more
Every one of the above has it's own advantage and disadvantage. The most important comes when you decide if you want to hit the SQL directly (ESQL or ODBC) or use higher-up abstractions (OLE, ADO, or others).
It is better to hit the SQL directly as it will provide you with the advantage to have full control over the SQL executed and type of coming response which also includes isolation level.
With the abstraction layer, you will lose some control and you'd have to work around a framework in order to have good performance. If you need some more help. Some more work is done for you.
* Embedded SQL (ESQL)
* ODBC
* ADO
* OLE/DB and many more
Every one of the above has it's own advantage and disadvantage. The most important comes when you decide if you want to hit the SQL directly (ESQL or ODBC) or use higher-up abstractions (OLE, ADO, or others).
It is better to hit the SQL directly as it will provide you with the advantage to have full control over the SQL executed and type of coming response which also includes isolation level.
With the abstraction layer, you will lose some control and you'd have to work around a framework in order to have good performance. If you need some more help. Some more work is done for you.
0
0
- What Is A Flat File?
- What Is Data Integrity Problems?
- What Are The Accessing Methods?
- How Does A Model Look The Way She Does?
- Define Demerits Of Conventional File System?
- How Candidate Key Is Differ From Concatenated Key?
- Is Relational Model Logically Independent?
- Discuss The Relative Advantage Of Centralized And Distributed Databases?
- What Does Cdr/cdt Transaction Mean?
- How Do Accountants Use Databases?
- What Is The Database Component In Database Application?
- Define The Difference Between Logical And Physical Data Views?
- How Middleware Works Between Client And Server?
- What Is Table,cell,row And Columns In MS Word?
- What Are Some Errors In Using Database?
- An Sql Server Is Not An Operating System... why Are People Always Asking Exam Questions On This Site?
- What Is 4nf?
- What Is Hierarchical Communication?
- Q. How Many Types Of Anomalies Are There In A RDBMS?
- What Is Entity Integrity?
- What Is Integrity Constraints?
- What Is A Referential Anomaly?
- When Did Uganda Get Its Independence?
- Explain Any Two Advantages Of A Database Systems?
- Explain File Management Systems Using File-based Approach?
- What Is Database.describe Advantages And Disadvantages Of Using Database?
- What Is Database?
- What Is The Need For Database?
- What Does Database Mean?
- What Is A Database??
- What Is A Trigger In The Database? What Is The Use Of It?
- What Is The Need Of A Cursor In The Database?
- What Is Database Testing?
- What Do You Know About DATABASE LANGUAGE?
- What's A Database Instance?
- What Is Distributive Database?
- What Is The Hierarchy Of Database?
- Who Is The Inventor Of Database?

New Comment - Comments are editable for 5 min.