Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is PL/SQL
What Is PL/SQL? - Oracle DBA FAQ - Introduction to PL/SQL
✍: FYIcenter.com
PL/SQL is a modern, block-structured programming language. It provides several features that make developing powerful database applications very convenient. For example, PL/SQL provides procedural constructs, such as loops and conditional statements, that are not available in standard SQL.
PL/SQL code runs on the server, so using PL/SQL lets you centralize significant parts of your database applications for increased maintainability and security. It also enables you to achieve a significant reduction of network overhead in client/server applications.
2007-04-25, 4996👍, 0💬
Popular Posts:
What will be printed as the resultof the operation below: int x; int modifyvalue() { return(x+=10); ...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
How to make elements invisible? Change the "visibility" attribute of the style object associated wit...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...