Subject | English | Hindi |
comp., MS | Function procedure | फ़ंक्शन प्रक्रिया (A procedure that returns a value and that can be used in an expression. You declare a function with the Function statement and end it with the End Function statement) |
comp., MS | procedure-level variable | प्रोसीजर स्तर वेरिएबल (A variable that is declared within a procedure. Procedure-level variables are always private to the procedure in which they are declared) |
comp., MS | remote procedure call | दूरस्थ प्रक्रिया कॉल (A communication mechanism that allows computers to communicate with one another over a network. An RPC consists of a procedure identifier, parameters passed to the procedure, and a value returned to the caller (client computer) after the procedure has executed on the remote system (server computer)) |
comp., MS | stored procedure | संचित कार्यविधि (A precompiled collection of SQL statements and optional control-of-flow statements stored under a name and processed as a unit. They are stored in an SQL database and can be run with one call from an application) |