i got a little data base with oracle and I want to connect it with a visual c++ interface, so i need to save my db in a file ! can you help me please ! thank you !
Can you frame your question in a better way. I could not get what you are looking for. Are you looking for VC++ oracle connectivity or want to know how to export database in Oracle.
what I want is a VC++ oracle connectivity but to do this I must export my database from oracle ! And i don't know how to export it !
You dont need to export the database for connecting to VC. Several ways to connect to VC++ 1) ODBC 2) ADO or ADO.NET 3) Oracle "native" SQL interface 1) ODBC is MOST compatible with almost anything. Relatively low performance but your code will be almost 100% compatible with any DB backend. 2) ADO is higher performance (ADO.NET with the .NET framework and VS.NET) and quite portable to other backends as well. 3) "Native" SQL using Oracle developer library is the highest performance way of interfacing to Oracle but your code will be locked into Oracle. Export Oracle database. Refer http://orafaq.com/faqiexp.htm