Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more: , +
project requirement : Connecting with Oracle: Accessing Oracle via microsoft Access and Excel.
1.Connect to an Oracle database.

2.Execute a query to fetch the data which contains attachment(pdf, doc,word) also.

3.Insert the query result into an Access database table and display it.

i am using VS 2012, C# .net for this.

i am able to access the data using ODBC but my point is that how can i fetch and show the data of attachment listed in my table say tbl_H2H_log.
Posted
Updated 10-Jun-15 1:31am
v2
Comments
Deepu S Nair 10-Jun-15 5:19am    
Homework?
ajitdstar4u 10-Jun-15 7:32am    
na.. a small project.
Kornfeld Eliyahu Peter 10-Jun-15 5:20am    
"i am using VS 2012, C# .net for this."
You should use what you have learned in co-operation with your beautiful mind...
Maciej Los 10-Jun-15 8:26am    
Why ODBC? Use Oledb! link

1 solution

I was thinking the same thing; create two OLEDB connections, one each for the Oracle data base and the Access data base. Run your query against the Oracle data base to retrieve the data, which comes to you in a Recordset. Then, open an Append query on the Access connection, fill its Recordset from the one returned by the Oracle data base, and execute the query.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900