I think no. If ORM is a compelling way to write a program (for the sole purpose of avoiding the "assembly language"), many big database vendors with all their resources would have already provided a non-SQL way to access and store data i.e. using ORM.
SQL is the most elegant and future-proof programming paradigm(declarative) to date. RDBMS vendors can seamlessly plug new functionality to SQL construct. Case in point, pre-MSSQL 2005 you have to loop the data to simulate tree structure access and running total. With MSSQL 2005, without using loops, using the same declarative SQL you can access tree structure data and running total in the most efficient manner.
If we were to put these tree-iterating and running total constructs to ORM, this would incur performance penalty.
SQL is the most important "assembly language" for most programmers. That's why many programmers will still invest on learning these assembly language for the foreseeable time to come.
I think many RDBMS vendors will just augment the SQL syntax rather than introducing ORM-based access to their RDBMS.