COMPILATION OF EMBEDDED LANGUAGE STATEMENTS IN A SOURCE CODE PROGRAM

Disclosed is a system and method for compiling a program. A source program including program statements in a first computer language, such as C++, Fortran, Java, etc., and embedded statements in a second computer language, such as SQL, is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated to at least one parse tree. The parsed statements are converted into target code.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
BACKGROUND OF THE INVENTION

[0001] 1. Field of the Invention

[0002] The present invention relates to a method and system for compiling a source code program in a host computer language including embedded program statements in a computer language different from the host computer language.

[0003] 2. Description of the Related Art

[0004] A computer source program is typically initially written in a high level computer language, also called source code, comprising descriptive statements of the actions the code will cause the computer to perform. High level computer languages include C++, FORTRAN, COBOL, JAVA™, etc. JAVA is a trademark of Sun Microsystems, Inc. A source program written in such a high level language must be converted into object or machine code, i.e., strings of zeros and ones, which the computer can execute to carry out the steps specified by the program. A compiler program is a computer program that receives as input source code and generates as output object code which may be loaded into the computer memory and executed.

[0005] The compiler processes the source code in phases. In the first phase, the lexical scanning phase, the compiler groups the characters of a source program into tokens, which are logically cohesive sequences of characters. During this lexical scanning phase, noise words such as comments and blanks are removed. Next, during a parsing phase, the syntax and semantics of the tokens are checked for errors. A parse tree phase follows where the source statements are converted into a parse tree which describes the syntactic structure of a source statement. A parse tree may be expressed as a syntax tree in which the operators appear as interior nodes and the operands of an operator are the children of the node for that operator.

[0006] The parsed tree may then be optimized in manners known in the art to develop the shortest linked lists providing a structure of the code. Another phase of a compiler is the generation of a symbol table. A symbol table is a data structure containing a record for identifiers, e.g., the names of variables, arrays, and functions, and the fields and attributes of identifiers. Next follows an error detection phase and thereafter the code generation phase where target code is generated from the optimized parse tree. The target code may be relocatable machine code or assembly code. The compilation process is described in “Compilers: Principles, Techniques and Tools,” by Alfred V. Aho, Ravi Sethi, and Jeffrey D. Ullman, (Addison-Wesley Publishing Co., March 1988), which publication is incorporated herein by reference in its entirety.

[0007] Oftentimes, a host language, e.g., C++, Java, Fortran, etc., includes embedded statements in another computer language. For instance, database systems and programs are often searched and accessed using Structured Query Language (SQL) statements. A source program could include such SQL statements to access a database from within the source program. However, SQL statements are in a substantially different format from programming statements in the host program language. To allow a programmer to include SQL statements in a source program in a different language, the SQL statements are often separately processed and compiled by a precompiler, also known as a language dependent compiler. A precompiler scans the source code for SQL statements and generates a separate modified source file for the SQL statements. This modified source file is a new version of the original source file including run-time API calls converted from the SQL statements. The modified source files and any additional source files that do not contain SQL statements are compiled using the appropriate host language compiler. The language compiler converts each modified source file into an object module. Precompiler programs to process SQL statements in source programs are described in U.S. Pat. No. 5,230,049, entitled “Program Source Code Translator, which patent is assigned to International Business Machines Corporation (“IBM”), the assignee of the present patent application, and which is incorporated herein by reference in its entirety.

[0008] There is a need in the art for an improved method and system for processing and compiling SQL statements embedded in a host language program.

SUMMARY OF THE PREFERRED EMBODIMENTS

[0009] To overcome the limitations in the prior art described above, preferred embodiments disclose a system and method for compiling a program. A source program including program statements in a first computer language and embedded statements in a second computer language is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree. The parsed statements are converted into target code.

[0010] In further embodiments, the same parse tree structure and parse tree rules are used to parse statements in the first and second languages.

[0011] In yet further embodiments, parse trees are optimized after generating parse trees for each statement in the source program. Code is then generated from the optimized parse trees.

[0012] In still further embodiments, the second language is SQL and the function calls are application programming interface (API) function calls.

[0013] Two-pass parsing systems employing a separate pre-compiler to generate an intermediate file for the embedded language statements are problematic because of the time required to generate the intermediate file of translated SQL statements, read the source code twice, and develop a precompiler to translate and handle the SQL statements. Further, such two-pass precompilers require the input source file be scanned and processed twice, one for precompilation and the other for translation. Second, the prior art precompiling methods require two copies of lexical scanners, one for the host source code and another for the SQL statements, i.e., the language dependent precompiler. Third, prior art compiling methods use two copies of source files, one with the original SQL statements and one from the precompiler generated modified source output. Fourth, precompilation systems increase the likelihood for error if the user changes statements in the modified source output.

[0014] Preferred embodiments provide an improved language processor because the SQL statements are converted to API function calls and then parsed in the same manner that statements in the first language are parsed in the parse tree before being converted into target code. In this way, the embedded language statements are subjected to the same optimization techniques applied to the host language. Instead of commenting out the SQL statements, inserting API function calls, and then generating a separate intermediate file, the preferred embodiments apply the parsing and parse tree to the API function calls. The language compiler then generates the parse tree and executes the function calls as if there are no SQL statements.

[0015] Thus, preferred embodiments eliminate the need for a separate precompiling program to process the SQL statements and eliminate the need to generate an intermediate file with the translated SQL statements.

BRIEF DESCRIPTION OF THE DRAWINGS

[0016] Referring now to the drawings in which like reference numbers represents corresponding parts throughout:

[0017] FIG. 1 is a block diagram illustrating a software and hardware environment in which preferred embodiments of the present invention are implemented;

[0018] FIG. 2 illustrates logic implemented in the compiler to process embedded language statements in accordance with preferred embodiments of the present invention; and

[0019] FIG. 3 illustrates a parse tree parsing an embedded language statement in accordance with preferred embodiments of the present invention.

DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS

[0020] In the following description, reference is made to the accompanying drawings which form a part hereof, and which illustrate several embodiments of the present invention. It is understood that other embodiments may be utilized and structural and operational changes may be made without departing from the scope of the present invention.

Hardware and Software Environment

[0021] FIG. 1 illustrates a hardware and software environment in which preferred embodiments of the present invention are implemented. A computer 2 includes a memory 4. The computer 2 may be a personal computer, workstation, mainframe, etc operating under microprocessor control. The memory 4 includes an operating system 6, a compiler 8, and a database program 10. The memory 4 may be any suitable volatile memory known in the art, e.g., RAM, DRAM, SRAM, etc., or a combination of volatile and non-volatile memory, e.g., hard disk drives, to provide storage space for programs, whether they are being executed or not. If the memory 10 is comprised of volatile and non-volatile devices, then data and programs may be swapped between the volatile and non-volatile memory devices in a manner known in the art. Moreover, the memory 4 may be distributed throughout a network computing system, where the compiler 8 is in one memory area and the database program 10 is in another area within the distributed network. The operating system 6 may be any suitable operating system such as AIX®, OS/390™, UNIX®, OS/2®, MVS™, WINDOWS®, WINDOWS NT® etc. AIX, OS/390, MVS, and OS/2 are trademarks of IBM; WINDOWS and WINDOWS NT are registered trademarks of Microsoft Corporation; UNIX is a registered trademark licensed by the X/Open Company LTD. The compiler 8 includes compiler 8 includes features typically found in compiler products to process a program comprised of source code 12 and generate object code 14, and includes additional logic to implement preferred embodiments of the present invention. The database program 10 is capable of converting SQL statements into application programming interface (API) function calls, and may be any suitable database program which performs such functions, such as the IBM DB2® UNIVERSAL DATABASE which includes the DB2 precompiler services for converting SQL statements to API function calls. The IBM DB2 system for processing embedded SQL statements is described in IBM publication “Embedded SQL Programming Guide, Version 5,” publication no. S10J-8158-00 (Copyright IBM 1993, 1997), which publication is incorporated herein by reference in its entirety. DB2 UNIVERSAL DATABASE is a registered trademark of IBM.

[0022] A user controls computer 2 operations via a display 16, which may be any suitable display device known in the art, and an input means 18, which may be a keyboard, mouse, pen-stylus, voice activated input, etc.

The Compiler

[0023] In preferred embodiments, the code needed to parse and compile the SQL statements is included in the host language compiler 8. Thus, in preferred embodiments, there is no need for a separate pre-compiler to compile embedded statements in another language, e.g., SQL, separately from compiling the code in the host language. In preferred embodiments, the host language may utilize a context-free grammar or BNF (Bauckus-Naur Form) The grammar in the host compiler 8 is modified to support keywords, such as “EXEC SQL” which enables the compiler 8 lexical scanner to accept SQL statements starting with “EXEC SQL.” As soon as the compiler 8 processes the SQL statement, a semantic action routine is invoked to process the SQL statement.

[0024] SQL statements are represented by application programming interface (API) function calls. An example of API function calls that underlie various SQL statements used to access a server including the IBM DB2 database are described in IBM publication “IBM DB2 Universal Database API Reference (Version 5),” IBM publication no. S10J-8167-00 (Copyright IBM, 1993, 1997).

[0025] FIG. 2 illustrates logic implemented as software logic in the compiler 8 and database program 10 and executed by the computer 2 to convert a source file including SQL statements and host language statements into target object code 14. Control begins at block 20 which represents the compiler 8 processing a source code 12 file. Control transfers to block 22 where the lexical scanner component of the compiler 8 proceeds to the first line in the source program 12. Control then transfers to block 24 which is a decision block representing the lexical scanner determining whether the statement is an SQL statement. If so, control transfers to block 26; otherwise control transfers to block 28 which represents the compiler 8 performing the lexical scan of the statement and then generating a parse tree in a manner known in the art. In preferred embodiments the parse tree is implemented as a linked list with nodes chained together. Each node may include a node name and one down pointer pointing to the next node deeper in the tree, i.e., a child node, and another pointer having the address of a node at the same depth, i.e., a sibling node.

[0026] Control then transfers to block 30 where the compiler 8 adds variables in the statement to a symbol table together with attributes for the variable. The symbol table is a data structure maintained in memory 4. Control transfers to block 32 which is a decision block representing the compiler 8 determining whether there are any further lines of source code 12. If so, control transfers to block 34 to proceed to the next line and then to block 24 et seq. to compile such statement; otherwise, control transfers to block 36.

[0027] If the statement being processed at block 24 is an SQL statement, then at block 26 the compiler 8 calls a semantic action routine to perform lexical scanning on the SQL statement and generate tokens for the statement. Control then transfers to block 38 where the compiler 8 reads the characters of the SQL statement into a buffer, e.g., sql_stmt buffer, one at a time, removing any spaces. Control transfers to block 40 where the compiler 8 converts the SQL statement to an ASCII string. Control then transfers to block 42 to locate any host and indicator variables. At block 44, the compiler 8 inserts the located variables in the symbol table, along with any attributes. Control transfers to block 46 where the compiler 8 replaces the host and indicator variables with underscores; at block 48 the compiler 8 adds a space to the end of the SQL statement to accommodate the database program 10, e.g., the database precompiler services in DB2. Control then transfers to block 50 which represents the compiler 8 sending the host variables in the SQL statement to the database program 10, such as the database precompiler services in the IBM DB2 data base program, to generate API runtime function calls for the SQL statement and variables.

[0028] Control then transfers to block 52 which represents the database program 10 (database precompiler services) filling an array for the SQL statement with API runtime function calls. Control transfers to block 54 where the compiler 8 generates a parse tree with the API function calls obtained from the database program 10. The parameters of these function calls are nodes in the parse tree. A single SQL statement may be comprised of multiple API function call statements that implement the SQL statement. In preferred embodiments, the parse trees for one function call are chained together. From block 54, control transfers to block 32 et seq.

[0029] FIG. 3 illustrates a preferred embodiment of a parse tree 70 including the API runtime function calls for a SQL statement generated at block 54 by the compiler 8. The parse tree 70 is maintained as a linked list data structure in memory 4. The parse tree 70 chains all the parse trees for multiple API function calls for a SQL statement into one tree. The parse tree 70 includes four root nodes 72a, b, c, d for each component API function call for the SQL statement. Each root node has a pointer to a lower node for a subcall and a pointer horizontally to the next root node, forming a chain of the parse trees that comprise the SQL statement. In the example of FIG. 3, node 1 72a points to an API function call SQLSTRT that initializes the runtime process. Node 2 72b points to an API function call SQLAALOC that allocates space to the database function call. Node 3 72c points to API function call SQLACALL that executes the call. Finally, node 4 72d points to SQLASTOP that terminates the runtime process. Each of these function calls have different parameters that are child nodes to the function calls that are passed to the API function call when executed. The down pointers for the parameter nodes are null. After generating the parse tree 70 chaining all the API function call components of the SQL statement, control transfers to block 32 et seq. to process any further lines of source code 12. Different SQL statements will have different API runtime function calls; more complex statements will require more nodes for additional function calls, whereas less complex SQL statements will require fewer nodes and function calls.

[0030] If there is no further source code, then at block 36 the compiler 8 walks through and optimizes all the parse trees in a manner known in the art to provide the shortest path in the parse tree. Control then transfers to block 56 where the compiler 8 generates target or object code 14 from the optimized parse tree. The target code generated in the code generation phase may be the object code for the compiler 8, executable code for the interpreter or assembly language code. Code generation comprises instruction selection, register selection, addressing modes, and object code optimization. The object code may be machine dependent or machine independent or absolute machine code or relocatable machine code. A package may also be created, which is the information a database program needs to process the SQL statements against the database when the program is executed. The package may be created during binding. A database manager application uses the package to maintain a compiled version of the SQL statement and executes this compiled version when the program is executed.

[0031] After the compile time ends, the object code 14 is then linked and loaded in a manner known in the art. During execution, the database program 10 is accessed to obtain the information requested through the compiled SQL statements.

[0032] With the logic of FIG. 2, the SQL statements are processed and parsed in the parse tree like any other host language statements with the API function calls generated directly into the parse trees. An advantage of the logic of FIG. 2 is that the SQL function calls are parsed before being converted into object code. Generally, generating object code is a more consuming and taxing task on system resources than parsing. In fact, object code generation is one of the most difficult tasks in language processing. For instance, a determination must be made as to how to assign registers and addressing modes, e.g., direct, indirect, immediate, doubly indirect, based indirect, etc. Further, machine dependent parameters must be isolated. The logic of FIG. 2, however, parses the SQL statements in the manner that the host language statements are parsed at the front end of compilation before generating code for the embedded SQL statements. In this way, the embedded SQL statements are processed in the same manner as the host language statements. Further, by parsing and lexically/semantically analyzing the SQL statements, the SQL statements are optimized in the same manner that the host language statements are optimized. Optimizing the compilation of the embedded SQL statements improves the efficiency of the code generation process.

Alternative Embodiments and Conclusions

[0033] This concludes the description of the preferred embodiments of the invention. The following describes some alternative embodiments for accomplishing the present invention.

[0034] Preferred embodiments of the compiler and database program may be implemented as a method, apparatus or article of manufacture using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof. The term “article of manufacture” (or alternatively, “computer program product”) as used herein is intended to encompass one or more computer programs and data files accessible from one or more computer-readable devices, carriers, or media, such as a magnetic storage media, “floppy disk,” CD-ROM, a file server providing access to the programs via a network transmission line, holographic unit, etc. Moreover, the media may be in a transmittable format in route through a transmission line from one location to another. Of course, those skilled in the art will recognize many modifications may be made to this configuration without departing from the scope of the present invention.

[0035] The preferred embodiments were described with respect to embedded SQL statements. However, in alternative embodiments, the compilation method may apply to any embedded statements that are in a language different from the host language of the source code. Moreover, preferred SQL statements and compilation were described with respect to the IBM DB2 system. However, the preferred embodiments could apply to any type of source file and any database program and SQL statements that could be embedded within a source file.

[0036] The preferred embodiments were described with respect to a compiler and a database program including database precompiler services. In alternative embodiments, these functions may be combined in single program or in any combination of various programs. Moreover, the structure of the parse tree and information maintained therein may vary in alternative embodiments.

[0037] Preferred embodiments were described with respect to a parse tree structure that includes a separate parse tree for each function call and chaining the parse trees together for a single SQL program statement. However, those skilled in the art will appreciate that numerous parse tree data structures and rules of parse tree construction may be used to generate the parse trees for the API function calls and host language program statements. For instance, all the API function calls may be within a single parse tree as opposed to separate parse trees chained together. Moreover, alternative means may be used to link the nodes of the parse tree than that described herein.

[0038] In summary, preferred embodiments in accordance with the present invention provide a system and method for compiling a program. A source program including program statements in a first computer language and embedded statements in a second computer language is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree. The parsed statements are converted into target code.

[0039] The foregoing description of the preferred embodiments of the invention has been presented for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. It is intended that the scope of the invention be limited not by this detailed description, but rather by the claims appended hereto. The above specification, examples and data provide a complete description of the manufacture and use of the composition of the invention. Since many embodiments of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended.

Claims

1. A method for compiling a program, comprising the steps of:

(a) processing a source program including program statements in a first computer language and embedded program statements in a second computer language;
(b) determining, for each program statement in the source program, whether a program statement is in one of the first computer language and the second computer language;
(c) lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(d) processing the program statement, after determining that the program statement is in the second computer language, by performing the steps of:
(i) lexically scanning the program statement;
(ii) accessing a plurality of function calls capable of executing the program statement; and
(iii) translating the function calls for the program statement into at least one parse tree; and
(e) converting the parse trees to target code.

2. The method of

claim 1, wherein the same parse tree structure and rules of parse tree construction are used for program statements in the first and second computer languages.

3. The method of

claim 1, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.

4. The method of

claim 3, wherein the step of accessing the function calls for the program statement comprises the steps of:
passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
receiving the API function calls for the SQL statement from the database program.

5. The method of

claim 1, wherein there are a plurality of function calls for the program statement, wherein the step of parsing the function calls for the program statement in the parse tree comprises the steps of:
generating a root node for each function call accessed for the program statement;
generating a function call node that is a child to the root node and includes the function call;
generating at least one parameter node that is a child to the function call node including a parameter for the function call; and
generating a pointer from a parameter node to another parameter node when there is more than one parameter for the function call.

6. The method of

claim 5, further comprising the step of generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.

7. The method of

claim 1, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, further comprising the steps of:
optimizing the parse trees after generating parse trees for each program statement in the source program; and
generating code from the optimized parse trees.

8. A system for compiling a program, comprising:

(a) a processor;
(b) a memory area, accessible to the processor, including a source program including program statements in a first computer language and embedded program statements in a second computer language;
(c) program logic, executed by the processor for the program statements in the source program, comprising:
(i) means for determining whether a program statement is in one of the first computer language and the second computer language;
(ii) means for lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(iii) means for processing the program statement, after determining that the statement is in the second language, by lexically scanning the program statement, accessing a plurality of function calls capable of executing the program statement, and translating the function calls for the statement to at least one parse tree; and
(d) converting the statements in the parse tree to target code.

9. The system of

claim 8, wherein the means for parsing program statements in the first and second computer languages into parse trees utilizes the same parse tree structures and rules of parse tree construction.

10. The system of

claim 8, wherein the second computer language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.

11. The system of

claim 10, wherein the means for accessing the function calls for the program statement comprises:
means for passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
means for receiving the API function calls for the SQL statement from the database program.

12. The system of

claim 8, wherein there are a plurality of function calls for the program statement, wherein the means for parsing the function calls for the program statement in the parse tree comprises:
means for generating a root node for each function call accessed for the program statement;
means for generating a node that is a child to the root including the function call;
means for generating at least one node that is a child to the function call node including a parameter for the function call; and
means for generating a pointer to a next parameter when there is more than one parameter for the function call.

13. The system of

claim 12, further comprising means for generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.

14. The system of

claim 8, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, wherein the program logic further comprises:
means for optimizing the parse trees after generating parse trees for the program statement in the source program; and
means for generating code from the optimized parse trees.

15. An article of manufacture for use in programming a computer system to compile a source program, the article of manufacture comprising computer readable storage media accessible to the computer system, wherein the computer readable storage media has at least one computer program embedded therein that causes the computer system to perform the steps of:

(a) processing a source program including program statements in a first computer language and embedded program statements in a second computer language;
(b) determining, for the program statements in the source program, whether a program statement is in one of the first computer language and the second computer language;
(c) lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(d) processing the program statement, after determining that the program statement is in the second computer language, by performing the steps of:
(i) lexically scanning the program statement;
(ii) accessing a plurality of function calls capable of executing the program statement; and
(iii) translating the function calls for the program statement to at least one parse tree; and
(e) converting the program statements in the parse tree to target code.

16. The article of manufacture of

claim 15, wherein the same parse tree structure and rules of parse tree construction are used to parse program statements in the first and second computer languages.

17. The article of manufacture of

claim 15, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.

18. The article of manufacture of

claim 17, wherein the step of accessing the function calls for the program statement comprises the steps of:
passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
receiving the API function calls for the SQL statement from the database program.

19. The article of manufacture of

claim 15, wherein there are a plurality of function calls for the program statement, wherein the step of parsing the function calls for the program statement in the parse tree comprises the steps of:
generating a root node for each function call accessed for the program statement;
generating a function call node that is a child to the root including the function call;
generating at least one parameter node that is a child to the function call node including a parameter for the function call; and
generating a pointer to a next parameter when there is more than one parameter for the function call.

20. The article of manufacture of

claim 19, further comprising the step of generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.

21. The article of manufacture of

claim 20, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, further comprising the steps of:
optimizing the parse trees after generating parse trees for each program statement in the source program; and
generating code from the optimized parse trees.

22. A memory device storing data structures accessible to an application program for compiling a source program, wherein the source program is comprised of program statements in a first computer program language and embedded program statements in a second computer language, wherein the data structures comprise a plurality of parse trees that are processed to generate target code,

wherein program statements in the first computer language are parsed into at least one parse tree comprising:
(i) a root node;
(ii) an operator node that is a child to the root node including an operator for executing the program statement; and
(iii) an operand node that is a child node to the operator node comprising an operand for the operator; and
wherein program statements in the second computer language are parsed into at least one parse tree comprising:
(i) a root node for each function call for the program statement, wherein the program statement is executed by at least one function call;
(ii) a function call node including the function call that is a child node to the root node; and
(iii) at least one parameter node that is a child node to the function call, wherein the parameter node is a parameter passed to the function call.

23. The memory device of

claim 22, wherein the same parse tree structure and rules of parse tree construction are used to parse program statements in the first and second computer languages.

24. The memory device of

claim 22, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.

25. The memory device of

claim 22, wherein the program statements in the second computer language are executed by a plurality of function calls, wherein the root node for the function calls include a pointer to another root node for a function call thereby forming a chain of root nodes for the program statement in the second computer language.
Patent History
Publication number: 20010011371
Type: Application
Filed: Sep 29, 1998
Publication Date: Aug 2, 2001
Inventor: MIN-MEI TANG (MORGAN HILL, CA)
Application Number: 09162965
Classifications
Current U.S. Class: 717/9
International Classification: G06F009/44;