Click here to Skip to main content
15,881,559 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Sir, I need to know the methods and their arguments of the databases that are exposed to other programming softwares which helps in making a bridge between front-end and back-end softwares.
For example there are some methods of sqlexpress that are known to visual studio as well as java....
Not saying the methods residing in .net framework or of java...

What I have tried:

Nothing. Want to know about those methods...Please be kind to help...
Posted
Updated 8-Apr-22 4:07am

1 solution

No, you have the wrong idea - there are no methods which are common to both C#, C++, or VB that are also common to Java: they use different frameworks and so different methods, objects, and parameters.
They share similar names and terminology because that is common to the "DB acc ess" description: Connections, Commands, Readers, Adapters - and of course the SQL code itself - but all they do is pass your request to the DB engine which processes the SQL statements and passes the results back.

You can't write one piece of code which will work in all languages with minor tweaks for syntax!
 
Share this answer
 
Comments
Member 12712527 8-Apr-22 10:16am    
Sir suppose i use c#. Do i have to take help of System.Data and etc present in the .net framework. So sir if I develop a language which connects to sqlexpress then only option for me is System.Data. Or other methods available...
OriginalGriff 8-Apr-22 10:55am    
Unless you want to completely reinvent the wheel, yes - pretty much.
Member 12712527 8-Apr-22 11:08am    
sir nicest answer....Re-inventing the wheel.....
sir if you give me more information regarding this matter then i'll make custom method to connect sqlexpress.
Maciej Los 8-Apr-22 11:12am    
5ed!
Member 12712527 8-Apr-22 11:12am    
I've an idea.... One who prepares virus is able to do that work quite easily...

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