Hello
Is it possible to connect Access or Oracle with C(C language).If it yes that send me one Sample code. please send me please.
And one more If we can connect internet useing C. what are the librerys are nessesory for that tell me fast.
Printable View
Hello
Is it possible to connect Access or Oracle with C(C language).If it yes that send me one Sample code. please send me please.
And one more If we can connect internet useing C. what are the librerys are nessesory for that tell me fast.
Access is basically possible though messy. You can access all COM objects (and the Access API is just that, use either DAO or ADO) with C.
You can also use the windows built-in SQL API or the OLE DB objects, but this may get even messier.
Same goes for Oracle. I don't know if there is a native API (there would probably be) that you can download, but you can still use SQL to access any DB.
For the internet, there are windows sockets, read them up in the reference.