1.

Explain The "paradigm Mismatch" Between Sql And Application Programming Languages?

Answer»

SQL statements return a SET of rows, while an application program WORKS on one row at a time. To RESOLVE this mismatch the results of SQL statements are processed as pseudofiles, using a cursor or pointer to specify which row is being processed.

SQL statements return a set of rows, while an application program works on one row at a time. To resolve this mismatch the results of SQL statements are processed as pseudofiles, using a cursor or pointer to specify which row is being processed.



Discussion

No Comment Found