Is there an RDBMS in existence that does not have SQL. I am not talking of NoSQL and all that XML and Javascript object type of data.
I mean like the database that is not instructed via SQL, but plainly via some API. There should not be an SQL at all.
I mean like how MS had its ADO objects in past and those objects had methods to do all the stuff that SQL does currently.
And I am not asking for an ORM framework. The frameworks just internally make and call SQL code. I dont want that. I want direct function or method calls that directly speak to the database.
I am into the windows platform. The languages I want the RDBMS to support is PHP and Python; and maybe C# too.
The data that I want to manage is everything an everyday SQL-RDBMS handles.
And yes I want the DBMS to manage entity relationships. But I do not want SQL to be in the picture.
I am not doing a project for anyone. Its just a matter of taste or preference to avoid jumping from one level/language to another.
I tried searching on google, but it only results into NoSQL which I dont like.