US20100293523A1 - Development environment configured to generate application source code from database objects - Google Patents

Development environment configured to generate application source code from database objects Download PDF

Info

Publication number
US20100293523A1
US20100293523A1 US12/537,121 US53712109A US2010293523A1 US 20100293523 A1 US20100293523 A1 US 20100293523A1 US 53712109 A US53712109 A US 53712109A US 2010293523 A1 US2010293523 A1 US 2010293523A1
Authority
US
United States
Prior art keywords
source code
database
application source
database object
application
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/537,121
Inventor
Azadeh Ahadian
Todd R. Bender
Stephen A. Brodsky
Clifford D. Chu
Zeus O. Courtois
Rebecca B. Nin
Michael L. Pauser
Brian G. PAYTON
Sonali Surange
Hongdi Zhang
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/537,121 priority Critical patent/US20100293523A1/en
Publication of US20100293523A1 publication Critical patent/US20100293523A1/en
Priority to US13/405,078 priority patent/US8739116B2/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/10Requirements analysis; Specification techniques
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment

Definitions

  • Embodiments of the invention relate to tools used to develop application software. More specifically, embodiments of the invention provide an enhanced integrated development environment (IDE) for managing application source code, database systems, and related artifacts.
  • IDE integrated development environment
  • IDE tools are available to assist computer programmers with the development process.
  • IDE tools are available to assist programmers developing applications in a variety of programming languages (e.g., Java®.net, C, C++, C#, etc.). These tools are typically configured with features such as auto-indenting, syntax highlighting, type checking, and a variety of other features that assist the development process.
  • An IDE tool usually includes a text editor that visually displays errors as source code is typed, allowing a developer to correct errors before proceeding with the next line to code.
  • IDE tools are optimized for different programming languages and errors are identified based on the programming language being used by the developer, often determined a suffix of a project file (e.g., .cpp for a c++ program or .java for a Java® program).
  • a suffix of a project file e.g., .cpp for a c++ program or .java for a Java® program.
  • such an application may be configured with (or be configured to generate) a number of database queries (e.g., SQL statements) as well as the code needed to connect to the database, submit a query and receive results.
  • database queries e.g., SQL statements
  • object-to-relational frameworks exist for moving data between a database and an application program.
  • an application server may interact with a database and a web server to provide a web-based application.
  • Part of the application code may create persistence for user data using database queries stored in XML files.
  • database applications such as these typically have to create/consume numerous artifacts based on the business needs, inter-component interactions and best practices.
  • Commonly used artifacts in a database application are SQL statements in Java code, stored procedures (which internally could be written in SQL/Java or another language), xml files, SQL files from database projects, etc.
  • IDE tools may be used to compose source code in a variety of programming languages.
  • database tools may be used to create database models and compose queries using visual tools, etc.
  • Each of these artifacts may have development tools within their own area/view/perspective/module within an IDE. That is, Java developers use a Java perspective of an IDE tool to build Java applications, database administrators use a data perspective of the IDE tool to build and improve SQL scripts or procedures.
  • the development tools themselves do not include mechanisms for connecting different aspects of the development process with one another.
  • One embodiment of the invention includes a method for an integrated development environment (IDE) tool to manage database aware application development.
  • the method generally includes executing the IDE tool on a computing system having at least a processor, a memory, and a storage device.
  • the IDE tool is configured to perform an operation which includes presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object.
  • the operation also includes storing an indication of the relationship between the database object and the application source code.
  • Another embodiment of the invention includes a computer-readable storage medium containing an IDE tool, which when executed on a processor, performs an operation to manage database aware application development.
  • the operation may generally include presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object.
  • the operation also includes storing an indication of the relationship between the database object and the application source code.
  • Still another embodiment of the invention includes a system having a processor and a memory containing an IDE tool, which when executed on a processor, performs an operation to manage database aware application development.
  • the operation may generally include presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object.
  • the operation also includes storing an indication of the relationship between the database object and the application source code.
  • FIG. 1 illustrates an example computing system running an integrated development environment (IDE) tool, according to one embodiment of the invention.
  • IDE integrated development environment
  • FIG. 2 illustrates an example of components from an IDE tool, according to one embodiment of the invention.
  • FIG. 3 illustrates a method for interactively editing an SQL query, according to one embodiment of the invention.
  • FIG. 4 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 5 illustrates a method for generating application code associated with a database object, such as a query, according to one embodiment of the invention.
  • FIG. 6 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 7 illustrates a method for generating a stored procedure for a database system from information maintained in a in a project file in a development project, such as a source code file, according to one embodiment of the invention.
  • FIG. 8 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 9 illustrates a method for generating a database package from project files associated with a development project, according to one embodiment of the invention.
  • software applications include many heterogeneous artifacts—each of which may be created by different individuals having different skill sets. And developers often share such artifacts with one another in an iterative process as application development evolves. Doing so frequently requires artifacts to be moved between different project files manually. For example, the text of an SQL statement composed by a database administrator (having expertise in a particular database) has to be manually cut/paste from SQL scripts into application source code (being composed by a developer). More simply, at least from a developer's perspective, IDE tools having a common underlying understanding of the components needed to build a database application are missing.
  • Embodiments of the invention introduce development tools that connect these various artifacts in a database aware fashion.
  • embodiments of the invention integrate SQL query builders across multiple application development interfaces (e.g., a source code editor, XML editor, database scripting tools, etc.) significantly improving developer productivity, reducing development cost and time.
  • application development interfaces e.g., a source code editor, XML editor, database scripting tools, etc.
  • the process of consuming heterogeneous artifacts in an application (or creating them for consumption) becomes a very productive experience, eliminating the need to manually cut/paste information in multiple project files.
  • connecting the various development tools empowers novice users to perform complex tasks.
  • a visual SQL builder may allow a novice developer to easily build database objects representing a complex query and incorporate SQL statements generated from the database object into application source code.
  • the IDE tool may monitor the database object in the query development tool. Subsequent changes to the query in the visual SQL builder result in updates to the text of a query statement in application source code.
  • the IDE tool manages the relationship between these items for the developer within a given development project. Therefore, the IDE tool greatly simplifies both the development and maintenance of an application, particularly in cases where a complex, finely tuned query resides in multiple locations within a development project.
  • Relationships between a variety of development artifacts and the development tool may be managed in a similar manner.
  • application source code and/or database statements may be used to generate and maintain database queries within stored procedures, database packages, XML files, and a variety of other application development artifacts.
  • One embodiment of the invention is implemented as a program product for use with a computer system.
  • the program(s) of the program product defines functions of the embodiments (including the methods described herein) and can be contained on a variety of computer-readable storage media.
  • Illustrative computer-readable storage media include, but are not limited to: (i) non-writable storage media (e.g., read-only memory devices within a computer such as CD-ROM disks readable by a CD-ROM drive) on which information is permanently stored; (ii) writable storage media (e.g., floppy disks within a diskette drive or hard-disk drive) on which alterable information is stored.
  • Such computer-readable storage media when carrying computer-readable instructions that direct the functions of the present invention, are embodiments of the present invention.
  • Other media include communications media through which information is conveyed to a computer, such as through a computer or telephone network, including wireless communications networks. The latter embodiment specifically includes transmitting information to/from the Internet and other networks.
  • Such communications media when carrying computer-readable instructions that direct the functions of the present invention, are embodiments of the present invention.
  • computer-readable storage media and communications media may be referred to herein as computer-readable media.
  • routines executed to implement the embodiments of the invention may be part of an operating system or a specific application, component, program, module, object, or sequence of instructions.
  • the computer program of the present invention typically is comprised of a multitude of instructions that will be translated by the native computer into a machine-readable format and hence executable instructions.
  • programs are comprised of variables and data structures that either reside locally to the program or are found in memory or on storage devices.
  • various programs described hereinafter may be identified based upon the application for which they are implemented in a specific embodiment of the invention. However, it should be appreciated that any particular program nomenclature that follows is used merely for convenience, and thus the invention should not be limited to use solely in any specific application identified and/or implied by such nomenclature.
  • FIG. 1 illustrates an example computing system 100 running an integrated development environment (IDE) tool, according to one embodiment of the invention.
  • the computing system 100 includes a computer 102 .
  • the computer 102 is connected to other computers via a network 130 .
  • the network 130 may be a telecommunications network and/or a wide area network (WAN).
  • the network 130 is the Internet.
  • the computer 102 generally includes a processor 104 connected via a bus 1 12 to a memory 106 , a network interface device 1 10 , a storage 108 , an input device 114 , and an output device 116 .
  • the computer 102 is generally under the control of an operating system. Examples of operating systems include UNIX, versions of the Microsoft Windows® operating system, and distributions of the Linux® operating system. (Note: Linux is at trademark of Linus Torvalds in the United States and other countries.) More generally, any operating system supporting the functions disclosed herein may be used.
  • the processor 104 is included to be representative of a single CPU, multiple CPUs, a single CPU having multiple processing cores, and the like.
  • the memory 106 may be a random access memory.
  • the memory 106 is shown as a single entity, it should be understood that the memory 106 may comprise a plurality of modules, and that the memory 106 may exist at multiple levels, from high speed registers and caches to lower speed but larger DRAM chips.
  • the network interface device 110 may be any type of network communications device allowing the computer 102 to communicate with other computers via the network 130 .
  • the input device 114 may be any device for providing input to the computer 102 .
  • a keyboard, keypad, light pen, touch-screen, track-ball, or speech recognition unit, audio/video player, and the like may be used.
  • the output device 116 may be any device for providing output to a user of the computer 102 .
  • the output device 116 may be any conventional display screen or set of speakers, along with their respective interface cards, i.e., video cards and sound cards.
  • the output device 116 and input device 114 may be combined.
  • a display screen with an integrated touch-screen, a display with an integrated keyboard, or a speech recognition unit combined with a text-to-speech converter may be used.
  • the storage 108 may be a hard disk drive storage device. Although the storage 108 is shown as a single unit, the storage 108 may be a combination of fixed and/or removable storage devices, such as fixed disc drives, floppy disc drives, tape drives, removable memory cards, or optical storage.
  • the memory 106 and the storage 108 may be part of one virtual address space spanning multiple primary and secondary storage devices.
  • the memory 106 of the computer 102 includes an IDE tool 120 being used to access a project file 122 .
  • the project file 122 is included to be representative of a variety of different development artifacts, e.g., application source code files, library header files, XML files, database scripts, DDL files, SQL statements, markup language documents, JSP files, etc.
  • the project file 122 represents one file of a larger development project 124 . More generally, project “project file” refers to any file used to develop computer software, frequently grouped together into logical projects for convenience.
  • the development project itself is not mandatory and a “project file” may exist without an association to a specific development project (e.g., a file containing Java source code configured to connect and submit queries to a database system).
  • the IDE tool 122 may provide plurality of editing tools, each configured to share and manage database aware information across multiple files within the development project 124 .
  • FIG. 1 also shows database servers 140 , application server 150 , and web servers 160 .
  • the application server 150 includes a database application 155 .
  • the database application 155 is included to be representative of a complete, deployed application composed using the IDE tool 120 .
  • database application 155 may be hosted by the application server 150 and configured to access databases in the database server 140 .
  • users may access the database application 155 through a web-based interface, where web pages requested through the web server 160 are generated by the application server 150 (e.g., by issuing data requests to database servers 140 and encapsulating query results in HTML markup).
  • this scenario represents just one possible scenario for an application generated from development project 124 developed using IDE tool 106 .
  • FIG. 2 illustrates components of the IDE tool 120 first shown in FIG. 1 , according to one embodiment of the invention.
  • the IDE tool 120 includes multiple development perspectives 230 .
  • the IDE tool 120 includes a compiler/linker 205 , a deployment tool/package builder 210 , and SQL query relationships 215 .
  • the project files 220 include a database data model 222 , database packages/queries 224 , source code files 226 , and artifacts 228 .
  • the compiler/linker 205 may provide a software application configured to generate object code from the project files included in a given development project.
  • the deployment tool/packager 210 may be used to create an installation package or deploy a given package to an application server.
  • the deployment tool/packager 210 may be configured to create a database package (i.e., a collection of pre-prepared queries which may be invoked by a database engine) or stored procedure on a database system.
  • the development perspectives 230 provide a plurality of different editing tools each used to develop a database aware software application.
  • the development perspectives 230 include a database query builder 232 , a source code builder 234 , and an XML builder 236 .
  • the IDE tool 120 may include additional development perspectives 230 tailored to allow developers to build other development artifacts associated with a database aware application.
  • the project files 220 may be accessed by the various development perspectives 230 , allowing each distinct type of project file to be edited using a tool tailored for a given type of project file.
  • the development perspectives 230 may be configured to interact with one another—allowing changes to a given project file to be propagated to others.
  • SQL query relationships 315 may be used to identify where a database query (composed using the database builder 232 ) is used in other project files 220 (e.g., in one of the source code files 226 ).
  • the project flies include a database data model 222 , a set of packages or SQL queries 224 , source code files 226 , and other artifacts 228 (e.g., XML files).
  • the project files supported by the IDE tool 120 may include a variety of other project file types.
  • the database query builder 232 may provide a visual tool used to compose a database query.
  • the database query builder 232 provides a graphical user interface configured to allow developers to build complex SQL statements.
  • database query builder 232 may present developers with a design canvas which allows large SQL statements to be built in fragments, such as from clauses, predicates and so forth. Such an interface may allow query relationships resulting in joins between numerous tables to be represented by connecting lines between tables on a design canvas. Further, as the design is being edited, the resulting SQL may be presented to a user. Once completed, a user may provide a name for the query, and the IDE 120 may store the query within one of the project files 210 .
  • the source code builder 234 may provide a text-editing tool used to edit source code within a source code file 226 .
  • the source code builder 224 may be configured to provide a variety of features such as auto-indenting, syntax highlighting, type checking, and a variety of other features that assist the development process.
  • the source code may include the appropriate routines needed to connect to and submit a query (e.g., an SQL query) to a database configured according to a particular data model 212 .
  • the XML builder 236 may provide a tool used to compose XML grammars, or build XML documents consistent with a particular grammar. For example, the XML document may provide a document used to markup multiple SQL queries.
  • the queries in such a document may be edited using the database builder 232 and the IDE tool 120 may be configured to maintain the relationship between the query within one of the artifacts 228 (e.g., an XML file) and a particular database query 234 composed using the database query builder 232 .
  • the artifacts 228 e.g., an XML file
  • FIG. 3 illustrates a method 300 for interactively editing an SQL query, according to one embodiment of the invention.
  • the method 300 begins at step 305 where the IDE tool 120 receives a request to open a given project file 220 .
  • a developer may open a source code file that is to include software routines configured to access a database.
  • the IDE tool 120 may display the content of the requested project file.
  • FIG. 4 illustrates an example screen display 400 from the IDE tool 120 , according to one embodiment of the invention.
  • a source code pane 405 displays a fragment of source code for a routine “EmployeeData.”
  • the IDE tool 120 may display a query builder pane, allowing the user to compose or modify a database query to be included in the project file.
  • the screen display 400 includes a design canvas 420 used to build a database query to include in the source code of the “EmployeeData” routine.
  • the SQL statement 410 in the source code pane 405 is displayed in a visual form in the design canvas 420 .
  • a table 422 “Department” and a table 426 “Employee” are joined by a link 424 .
  • the link 424 represents a join relationship in the SQL query generated from the visual representation.
  • the user has selected to include table 422 and table 426 in a query and specified what column to retrieve data from using checkboxes. Additionally, data from the columns are joined using a primary/key foreign key relationship between these two tables (represented using the link 424 ).
  • the design canvas 420 includes a pane 428 providing a database object name for this query “Statement1.sql.” In this example, the pane 428 includes multiple tabs used to switch between editing different aspects of a database query.
  • the columns tab 430 is selected—allowing the developer to specify what columns and tables to return data from that satisfies query conditions.
  • the user may also switch to a conditions tab 432 , a groups tab 434 , and a group conditions tab 436 , each used to access a visual interface, which allows a developer to edit different elements of a database query.
  • the IDE tool 120 may be adapted to provide developers with a variety of other functions related to database query development.
  • the developer may use the database query builder 232 to perform query tuning, associating performance measurement (both predictive and measured), query testing/test generation/test execution, querying/reporting and operating on the accumulated information, as well as provide integrated query formatting/annotating, and documentation generation.
  • the IDE tool 120 generates an SQL query statement from the user input in the design canvas 420 .
  • the IDE tool 120 may insert the generated query source in the project file opened by the user at step 305 , e.g., the IDE tool may insert statement 410 shown in pane 405 of FIG. 4 .
  • the IDE tool may record an indication of the relationship between the database object (e.g., the “Statement1.sql” object shown in a visual format in design canvas 420 ) and the use of that database object within another project file 220 (e.g., the source code of the “EmployeeData” routine shown in pane 405 .
  • the IDE tool 120 may update the text of the query statement 410 in the source code file, and in any other files which include the database query represented by the “Statement1.sql” database object.
  • changes made in the design canvas 420 of the database query builder 232 are reflected in the Java code. This eliminates the need for manual copy/paste operations between source code and database development tools. Doing so provides application developers with a powerful, easy to use user interface. Thus, application developers, who may not have substantial SQL expertise, can still build complex SQL statements to include in source code files. Further, the IDE tool 120 manages the use of those statements throughout a software development project.
  • the IDE tool 120 may interact with a variety of different project artifacts that contain database query statements. For example documents in other source code languages, XML (or other markup languages) etc. may contain text representations of database queries. Further, although described relative to relational database statements (e.g., SQL) embodiments of the invention may be adapted for use with other database architectures (e.g., hierarchal databases such as the Information Management System (IMS) available from IBM).
  • IMS Information Management System
  • the IDE tool 120 may also be configured to assist developers working on the database side of data development project. Such developers may compose a variety of different development artifacts such as SQL script files, stored procedure definitions and other development files. For example, in one embodiment, the IDE tool 120 may create database access layers from SQL scripts or from within SQL editors containing such scripts. The code generation can also generate sample applications customized to match business needs, e.g. applications tailored to an existing database. This allows developers to quickly consume SQL resources within software applications being developed, significantly reducing many manual steps.
  • FIG. 5 illustrates a method 500 for generating application code associated with a database object, such as a SQL query statement, according to one embodiment of the invention.
  • the method 500 begins at step 505 where a user navigates through a database data model using the IDE tool 120 .
  • the IDE tool 120 receives a selection of a database object, such as an SQL query script.
  • FIG. 6 illustrates an example of this scenario in which a screen display 600 shows a user navigating through a data project explorer pane 605 .
  • the user has selected a database object 607 named “Statement1.sql” and right-clicked a mouse, resulting in the display of a context menu 609 .
  • the context menu 609 includes a menu item to generate a stored procedure and a menu item 620 to generate query code for the selected database object.
  • a dialog box 615 shows the results of selecting the “generate query code” menu item 620 .
  • the dialog box 615 allows the developer to specify a source folder 625 to store code generated around the database object.
  • the developer has selected to generate a new bean object (a Java construct) using radio button 630 .
  • the bean object is used to store a result set generated from the query represented by the “Statement1.sql” database object.
  • a checkbox 635 is used to indicate that the IDE tool should generate a method interface for the selected database object 607 (i.e., the “Statement1.sql” object).
  • the IDE tool receives parameters for an application configured to access the selected database object, such as the ones illustrated in FIG. 6 .
  • the parameters specify what code objects should be generated to access/create/update the database object.
  • the IDE tool 120 generates application source code for the selected database object, according to the specified parameters. For example, the developer may select the “Finish” button of the dialog box 615 . In this scenario, the IDE tool 120 responds by generating a Java package named “com.app” (entered in a textbox 635 ) with an interface and method named as shown in FIG. 6 . Further, the generated code includes a Java bean named “MyJavaApp” to include a result set in 640 .
  • the IDE tool may be configured to generate a relational-to-object interface for this database query. Further, at step 525 , the IDE tool 120 may store the application code generated at step 520 as well as an indication of the relationship between the database object (i.e., the “Statement1.sql” object) and the generated source code (stored in the “com.app” source file. Thereafter, should the developer modify the database statement underlying the generated source code, the IDE tool may be configured to update the source code (or simply notify the developer that the database code has changed).
  • the IDE tool 120 may be configured to generate stored procedures from the content of various project files 210 .
  • a stored procedure may be generated from a Java method in the source code builder 234 .
  • a user interface may then be displayed to developer, which presents the proposed signature, input, output parameters, and types, etc. to provide a single click experience when creating stored procedures.
  • database routines such as stored procedures can be a significant part of database access.
  • a stored procedure generally provides a subroutine available to applications accessing a relational database system.
  • a stored procedure may be composed in many languages including SQL, Java, and other database or programming languages.
  • FIG. 7 illustrates a method for generating a stored procedure for a database system from information maintained in a in a project file in a development project, such as a source code file, according to one embodiment of the invention.
  • the method 700 begins at step 705 where the IDE tool 120 receives a user selection of a project item to include in a stored procure. And at step 710 , the IDE tool 120 identifies a mapping between program objects and database entities. For example, the user may select a program routine such as a Java method (composed using the source code builder 234 ), a SQL query (composed using the database query builder 232 ), or other development project artifact.
  • FIG. 8 illustrates an example using the source code builder 234 . Specifically, FIG. 8 illustrates an example screen display 800 generated by the IDE tool 120 , according to one embodiment of the invention.
  • the source code builder 234 displays the source code for a Java method 805 named “pqsp.”
  • the developer has selected a line of source code (indicated by the highlighting and the position of a cursor 807 ) and right-clicked a mouse, resulting in the display of a context menu 810 .
  • the context menu 810 includes a menu item 811 which the developer may select to generate a stored procedure from the selected program object (i.e., the Java method 805 ).
  • the IDE tool 120 may present the developer with dialog box 815 .
  • the user the dialog box 815 allows the developer to name a stored procedure to generate from the selected Java method 805 and presents the user with the mappings between the application source code (Java names 820 ) and the corresponding database object names (SQL names 825 ) identified by the IDE tool 120 . That is, the dialog box 815 includes references to variable names in the source code, which map to objects in the database such as table/column names. Additionally, the developer may specify whether to deploy the stored procedure or save the stored procedure as one of the project files in the development project.
  • the “Finish” button may be used to generate and potentially deploy the stored procedure corresponding to the project file (e.g., the source code in Java method 805 ).
  • the IDE tool 120 may store an indication of the relationship between the selected project item (e.g., the source code of the Java method 805 ) and the stored procedure generated from this project item. Thereafter, should the developer modify the database statement underlying the generated stored procedure, the IDE tool may be configured to update the source code (or simply notify the developer that the database code has changed).
  • the IDE tool may be configured to generate additional database objects from SQL statements stored inside project files (e.g., Java files or XML files).
  • project files e.g., Java files or XML files.
  • a properties file used to bind SQL into database packages typically define properties on a per Java file basis.
  • the IDE tool 120 may maintains a connection between the java files containing the SQL and the options needed to perform the bind. Further, the IDE tool 120 may be configured to generate the database package from one or more SQL statements in program source code.
  • FIG. 9 illustrates a method 900 for generating a database package from project files associated with a development project, according to one embodiment of the invention.
  • the method 900 begins at step 905 , where the IDE tool 120 receives a selection of one or more project files to use in a database package.
  • the project files may include program source code files.
  • the project files may also include XML files used to store a collection of SQL queries used by the Java Persistence API to allow a Java bean to interact with a database.
  • the developer may specify the properties file(s) to bind the SQL queries and build a database package from the queries in the project file.
  • the IDE tool 120 parses the selected project files to identify database queries in the file.
  • the IDE tool 120 may generate a database package that includes the identified queries.
  • the package may be deployed to a given database.
  • a database may generate an access plan for each query in the database package, improving database performance when such queries are invoked by an application.
  • the IDE tool 120 may store an indication of the relationship between the selected project item and the database package generated from the project item identified at step 805 . Thereafter, should the developer modify the database statement underlying the database package, the IDE tool 120 may be configured to update the database package (or simply notify the developer that the database code has changed).
  • the IDE tool may be configured to assist developers working on a database aware software application.
  • Such applications may include many distinct development artifacts, e.g., source code files, XML files, SQL scripts, archive files, etc.
  • Embodiments of the invention provide development tools that connect various artifacts such as these in a database aware fashion.
  • embodiments of the invention integrate SQL query builders across multiple application development interfaces (e.g., a source code editor, XML editor, database scripting tools, etc.) significantly improving developer productivity, reducing development cost and time.
  • an IDE tool may monitor database objects generated using a query development.
  • the IDE tool manages the relationship between these items for the developer within a given development project. Therefore, the IDE tool greatly simplifies both the development and maintenance of an application, particularly in cases where a complex, finely tuned query resides in multiple locations within a development project.

Abstract

Development tools are disclosed that connect various artifacts in a database aware fashion. For example, the development environment may integrate SQL query builders across multiple application development interfaces (e.g., a source code editor, XML editor, database scripting tools, etc.), significantly improving developer productivity, reducing development cost and time. Thus, the process of consuming heterogeneous artifacts in an application (or creating them for consumption) becomes a very productive experience, eliminating the need to manually cut/paste information in multiple project files in many cases.

Description

    CROSS REFERENCE TO RELATED APPLICATIONS
  • This application is a continuation of co-pending U.S. patent application Ser. No. 12/464,712, filed May 12, 2009, which is herein incorporated by reference in its entirety
  • BACKGROUND OF THE INVENTION
  • 1. Field of the Invention
  • Embodiments of the invention relate to tools used to develop application software. More specifically, embodiments of the invention provide an enhanced integrated development environment (IDE) for managing application source code, database systems, and related artifacts.
  • 2. Description of the Related Art
  • Developing software applications is a complex task, and IDE tools are available to assist computer programmers with the development process. Currently, IDE tools are available to assist programmers developing applications in a variety of programming languages (e.g., Java®.net, C, C++, C#, etc.). These tools are typically configured with features such as auto-indenting, syntax highlighting, type checking, and a variety of other features that assist the development process. An IDE tool usually includes a text editor that visually displays errors as source code is typed, allowing a developer to correct errors before proceeding with the next line to code. Typically, IDE tools are optimized for different programming languages and errors are identified based on the programming language being used by the developer, often determined a suffix of a project file (e.g., .cpp for a c++ program or .java for a Java® program).
  • However, application programs have long since ceased to be developed as a single application built from a group of source code files. Instead, multiple applications interact with one another to provide users with a particular service. Frequently, for example, developers compose applications that interact with a database engine. The database may be developed with the application, but applications are also developed to interact with (often complex) existing database systems.
  • Typically, such an application may be configured with (or be configured to generate) a number of database queries (e.g., SQL statements) as well as the code needed to connect to the database, submit a query and receive results. Further, many object-to-relational frameworks exist for moving data between a database and an application program. Similarly, an application server may interact with a database and a web server to provide a web-based application. Part of the application code may create persistence for user data using database queries stored in XML files. More generally, database applications such as these typically have to create/consume numerous artifacts based on the business needs, inter-component interactions and best practices. Commonly used artifacts in a database application are SQL statements in Java code, stored procedures (which internally could be written in SQL/Java or another language), xml files, SQL files from database projects, etc.
  • To build these applications, developers typically interact with development tools customized for each distinct type of artifact. For example, as noted above, IDE tools may be used to compose source code in a variety of programming languages. Similarly, database tools may be used to create database models and compose queries using visual tools, etc. Each of these artifacts may have development tools within their own area/view/perspective/module within an IDE. That is, Java developers use a Java perspective of an IDE tool to build Java applications, database administrators use a data perspective of the IDE tool to build and improve SQL scripts or procedures. However, while many of the results of a development effort overlap significantly and interact with one another, the development tools themselves do not include mechanisms for connecting different aspects of the development process with one another.
  • SUMMARY OF THE INVENTION
  • One embodiment of the invention includes a method for an integrated development environment (IDE) tool to manage database aware application development. The method generally includes executing the IDE tool on a computing system having at least a processor, a memory, and a storage device. The IDE tool is configured to perform an operation which includes presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object. The operation also includes storing an indication of the relationship between the database object and the application source code.
  • Another embodiment of the invention includes a computer-readable storage medium containing an IDE tool, which when executed on a processor, performs an operation to manage database aware application development. The operation may generally include presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object. The operation also includes storing an indication of the relationship between the database object and the application source code.
  • Still another embodiment of the invention includes a system having a processor and a memory containing an IDE tool, which when executed on a processor, performs an operation to manage database aware application development. The operation may generally include presenting within an interface of the IDE tool, a display of the database data model, receiving a selection of a database object of the database data model, and generating application source code configured to access the selected database object. The operation also includes storing an indication of the relationship between the database object and the application source code.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • So that the manner in which the above recited features, advantages and objects of the present invention are attained and can be understood in detail, a more particular description of the invention, briefly summarized above, may be had by reference to the embodiments thereof which are illustrated in the appended drawings.
  • It is to be noted, however, that the appended drawings illustrate only typical embodiments of this invention and are therefore not to be considered limiting of its scope, for the invention may admit to other equally effective embodiments.
  • FIG. 1 illustrates an example computing system running an integrated development environment (IDE) tool, according to one embodiment of the invention.
  • FIG. 2 illustrates an example of components from an IDE tool, according to one embodiment of the invention.
  • FIG. 3 illustrates a method for interactively editing an SQL query, according to one embodiment of the invention.
  • FIG. 4 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 5 illustrates a method for generating application code associated with a database object, such as a query, according to one embodiment of the invention.
  • FIG. 6 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 7 illustrates a method for generating a stored procedure for a database system from information maintained in a in a project file in a development project, such as a source code file, according to one embodiment of the invention.
  • FIG. 8 illustrates an example screen display from of an IDE tool, according to one embodiment of the invention.
  • FIG. 9 illustrates a method for generating a database package from project files associated with a development project, according to one embodiment of the invention.
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • As noted above, software applications include many heterogeneous artifacts—each of which may be created by different individuals having different skill sets. And developers often share such artifacts with one another in an iterative process as application development evolves. Doing so frequently requires artifacts to be moved between different project files manually. For example, the text of an SQL statement composed by a database administrator (having expertise in a particular database) has to be manually cut/paste from SQL scripts into application source code (being composed by a developer). More simply, at least from a developer's perspective, IDE tools having a common underlying understanding of the components needed to build a database application are missing.
  • Embodiments of the invention introduce development tools that connect these various artifacts in a database aware fashion. For example, embodiments of the invention integrate SQL query builders across multiple application development interfaces (e.g., a source code editor, XML editor, database scripting tools, etc.) significantly improving developer productivity, reducing development cost and time. Thus, the process of consuming heterogeneous artifacts in an application (or creating them for consumption) becomes a very productive experience, eliminating the need to manually cut/paste information in multiple project files. Further, connecting the various development tools empowers novice users to perform complex tasks. For example, a visual SQL builder may allow a novice developer to easily build database objects representing a complex query and incorporate SQL statements generated from the database object into application source code. Further, once incorporated into the source code, the IDE tool may monitor the database object in the query development tool. Subsequent changes to the query in the visual SQL builder result in updates to the text of a query statement in application source code. Thus, rather than require the developer to manually cut and paste the query from the development tool to the source code file each time it is changed during the development process, the IDE tool manages the relationship between these items for the developer within a given development project. Therefore, the IDE tool greatly simplifies both the development and maintenance of an application, particularly in cases where a complex, finely tuned query resides in multiple locations within a development project.
  • Relationships between a variety of development artifacts and the development tool may be managed in a similar manner. For example, application source code and/or database statements may be used to generate and maintain database queries within stored procedures, database packages, XML files, and a variety of other application development artifacts.
  • In the following, reference is made to embodiments of the invention. However, it should be understood that the invention is not limited to specific described embodiments. Instead, any combination of the following features and elements, whether related to different embodiments or not, is contemplated to implement and practice the invention. Furthermore, although embodiments of the invention may achieve advantages over other possible solutions and/or over the prior art, whether or not a particular advantage is achieved by a given embodiment is not limiting of the invention. Thus, the following aspects, features, embodiments and advantages are merely illustrative and are not considered elements or limitations of the appended claims except where explicitly recited in a claim(s). Likewise, reference to “the invention” shall not be construed as a generalization of any inventive subject matter disclosed herein and shall not be considered to be an element or limitation of the appended claims except where explicitly recited in a claim(s).
  • One embodiment of the invention is implemented as a program product for use with a computer system. The program(s) of the program product defines functions of the embodiments (including the methods described herein) and can be contained on a variety of computer-readable storage media. Illustrative computer-readable storage media include, but are not limited to: (i) non-writable storage media (e.g., read-only memory devices within a computer such as CD-ROM disks readable by a CD-ROM drive) on which information is permanently stored; (ii) writable storage media (e.g., floppy disks within a diskette drive or hard-disk drive) on which alterable information is stored. Such computer-readable storage media, when carrying computer-readable instructions that direct the functions of the present invention, are embodiments of the present invention. Other media include communications media through which information is conveyed to a computer, such as through a computer or telephone network, including wireless communications networks. The latter embodiment specifically includes transmitting information to/from the Internet and other networks. Such communications media, when carrying computer-readable instructions that direct the functions of the present invention, are embodiments of the present invention. Broadly, computer-readable storage media and communications media may be referred to herein as computer-readable media.
  • In general, the routines executed to implement the embodiments of the invention, may be part of an operating system or a specific application, component, program, module, object, or sequence of instructions. The computer program of the present invention typically is comprised of a multitude of instructions that will be translated by the native computer into a machine-readable format and hence executable instructions. Also, programs are comprised of variables and data structures that either reside locally to the program or are found in memory or on storage devices. In addition, various programs described hereinafter may be identified based upon the application for which they are implemented in a specific embodiment of the invention. However, it should be appreciated that any particular program nomenclature that follows is used merely for convenience, and thus the invention should not be limited to use solely in any specific application identified and/or implied by such nomenclature.
  • FIG. 1 illustrates an example computing system 100 running an integrated development environment (IDE) tool, according to one embodiment of the invention. As shown, the computing system 100 includes a computer 102. The computer 102 is connected to other computers via a network 130. In general, the network 130 may be a telecommunications network and/or a wide area network (WAN). In a particular embodiment, the network 130 is the Internet.
  • The computer 102 generally includes a processor 104 connected via a bus 1 12 to a memory 106, a network interface device 1 10, a storage 108, an input device 114, and an output device 116. The computer 102 is generally under the control of an operating system. Examples of operating systems include UNIX, versions of the Microsoft Windows® operating system, and distributions of the Linux® operating system. (Note: Linux is at trademark of Linus Torvalds in the United States and other countries.) More generally, any operating system supporting the functions disclosed herein may be used. The processor 104 is included to be representative of a single CPU, multiple CPUs, a single CPU having multiple processing cores, and the like. The memory 106 may be a random access memory. While the memory 106 is shown as a single entity, it should be understood that the memory 106 may comprise a plurality of modules, and that the memory 106 may exist at multiple levels, from high speed registers and caches to lower speed but larger DRAM chips. The network interface device 110 may be any type of network communications device allowing the computer 102 to communicate with other computers via the network 130.
  • The input device 114 may be any device for providing input to the computer 102. For example, a keyboard, keypad, light pen, touch-screen, track-ball, or speech recognition unit, audio/video player, and the like may be used. The output device 116 may be any device for providing output to a user of the computer 102. For example, the output device 116 may be any conventional display screen or set of speakers, along with their respective interface cards, i.e., video cards and sound cards. Although shown separately from the input device 114, the output device 116 and input device 114 may be combined. For example, a display screen with an integrated touch-screen, a display with an integrated keyboard, or a speech recognition unit combined with a text-to-speech converter may be used.
  • The storage 108 may be a hard disk drive storage device. Although the storage 108 is shown as a single unit, the storage 108 may be a combination of fixed and/or removable storage devices, such as fixed disc drives, floppy disc drives, tape drives, removable memory cards, or optical storage. The memory 106 and the storage 108 may be part of one virtual address space spanning multiple primary and secondary storage devices.
  • As shown, the memory 106 of the computer 102 includes an IDE tool 120 being used to access a project file 122. The project file 122 is included to be representative of a variety of different development artifacts, e.g., application source code files, library header files, XML files, database scripts, DDL files, SQL statements, markup language documents, JSP files, etc. Further, the project file 122 represents one file of a larger development project 124. More generally, project “project file” refers to any file used to develop computer software, frequently grouped together into logical projects for convenience. Of course, the development project itself is not mandatory and a “project file” may exist without an association to a specific development project (e.g., a file containing Java source code configured to connect and submit queries to a database system). As described in greater detail below, in one embodiment, the IDE tool 122 may provide plurality of editing tools, each configured to share and manage database aware information across multiple files within the development project 124.
  • FIG. 1 also shows database servers 140, application server 150, and web servers 160. Additionally, the application server 150 includes a database application 155. The database application 155 is included to be representative of a complete, deployed application composed using the IDE tool 120. For example, database application 155 may be hosted by the application server 150 and configured to access databases in the database server 140. In such a scenario, users may access the database application 155 through a web-based interface, where web pages requested through the web server 160 are generated by the application server 150 (e.g., by issuing data requests to database servers 140 and encapsulating query results in HTML markup). Of course, this scenario represents just one possible scenario for an application generated from development project 124 developed using IDE tool 106.
  • FIG. 2 illustrates components of the IDE tool 120 first shown in FIG. 1, according to one embodiment of the invention. As shown, the IDE tool 120 includes multiple development perspectives 230. Further, the IDE tool 120 includes a compiler/linker 205, a deployment tool/package builder 210, and SQL query relationships 215. And the project files 220 include a database data model 222, database packages/queries 224, source code files 226, and artifacts 228. As is known, the compiler/linker 205 may provide a software application configured to generate object code from the project files included in a given development project. Similarly the deployment tool/packager 210 may be used to create an installation package or deploy a given package to an application server. Additionally, the deployment tool/packager 210 may be configured to create a database package (i.e., a collection of pre-prepared queries which may be invoked by a database engine) or stored procedure on a database system.
  • In one embodiment, the development perspectives 230 provide a plurality of different editing tools each used to develop a database aware software application. Illustratively, the development perspectives 230 include a database query builder 232, a source code builder 234, and an XML builder 236. Of course, the IDE tool 120 may include additional development perspectives 230 tailored to allow developers to build other development artifacts associated with a database aware application. The project files 220 may be accessed by the various development perspectives 230, allowing each distinct type of project file to be edited using a tool tailored for a given type of project file. Further, the development perspectives 230 may be configured to interact with one another—allowing changes to a given project file to be propagated to others. For example, SQL query relationships 315 may be used to identify where a database query (composed using the database builder 232) is used in other project files 220 (e.g., in one of the source code files 226). Illustratively, the project flies include a database data model 222, a set of packages or SQL queries 224, source code files 226, and other artifacts 228 (e.g., XML files). Of course, like the development perspectives 230, the project files supported by the IDE tool 120 may include a variety of other project file types.
  • The database query builder 232 may provide a visual tool used to compose a database query. In one embodiment, the database query builder 232 provides a graphical user interface configured to allow developers to build complex SQL statements. For example, database query builder 232 may present developers with a design canvas which allows large SQL statements to be built in fragments, such as from clauses, predicates and so forth. Such an interface may allow query relationships resulting in joins between numerous tables to be represented by connecting lines between tables on a design canvas. Further, as the design is being edited, the resulting SQL may be presented to a user. Once completed, a user may provide a name for the query, and the IDE 120 may store the query within one of the project files 210.
  • Similarly, the source code builder 234 may provide a text-editing tool used to edit source code within a source code file 226. The source code builder 224 may be configured to provide a variety of features such as auto-indenting, syntax highlighting, type checking, and a variety of other features that assist the development process. In one embodiment, the source code may include the appropriate routines needed to connect to and submit a query (e.g., an SQL query) to a database configured according to a particular data model 212. The XML builder 236 may provide a tool used to compose XML grammars, or build XML documents consistent with a particular grammar. For example, the XML document may provide a document used to markup multiple SQL queries. Further, as noted, the queries in such a document may be edited using the database builder 232 and the IDE tool 120 may be configured to maintain the relationship between the query within one of the artifacts 228 (e.g., an XML file) and a particular database query 234 composed using the database query builder 232.
  • FIG. 3 illustrates a method 300 for interactively editing an SQL query, according to one embodiment of the invention. As shown, the method 300 begins at step 305 where the IDE tool 120 receives a request to open a given project file 220. For example, a developer may open a source code file that is to include software routines configured to access a database. At step 310, the IDE tool 120 may display the content of the requested project file. For example, FIG. 4 illustrates an example screen display 400 from the IDE tool 120, according to one embodiment of the invention. As shown, a source code pane 405 displays a fragment of source code for a routine “EmployeeData.” This routine includes a statement 410 with an embedded SQL query (beginning with Select (sql)=“SELECT. SSURANGE . . . ”).
  • Returning to the method 300, at step 315, the IDE tool 120 may display a query builder pane, allowing the user to compose or modify a database query to be included in the project file. For example, the screen display 400 includes a design canvas 420 used to build a database query to include in the source code of the “EmployeeData” routine. In this case, the SQL statement 410 in the source code pane 405 is displayed in a visual form in the design canvas 420. As shown, a table 422 “Department” and a table 426 “Employee” are joined by a link 424. The link 424 represents a join relationship in the SQL query generated from the visual representation. As shown, the user has selected to include table 422 and table 426 in a query and specified what column to retrieve data from using checkboxes. Additionally, data from the columns are joined using a primary/key foreign key relationship between these two tables (represented using the link 424). Further, the design canvas 420 includes a pane 428 providing a database object name for this query “Statement1.sql.” In this example, the pane 428 includes multiple tabs used to switch between editing different aspects of a database query. As shown, the columns tab 430 is selected—allowing the developer to specify what columns and tables to return data from that satisfies query conditions. The user may also switch to a conditions tab 432, a groups tab 434, and a group conditions tab 436, each used to access a visual interface, which allows a developer to edit different elements of a database query.
  • In addition to composing a database query using the design canvas shown in FIG. 4, the IDE tool 120 (and database query builder 232) may be adapted to provide developers with a variety of other functions related to database query development. For example, the developer may use the database query builder 232 to perform query tuning, associating performance measurement (both predictive and measured), query testing/test generation/test execution, querying/reporting and operating on the accumulated information, as well as provide integrated query formatting/annotating, and documentation generation.
  • Again returning to the method 300, at step 320, the IDE tool 120 generates an SQL query statement from the user input in the design canvas 420. And at step 325, the IDE tool 120 may insert the generated query source in the project file opened by the user at step 305, e.g., the IDE tool may insert statement 410 shown in pane 405 of FIG. 4. At step 330, the IDE tool may record an indication of the relationship between the database object (e.g., the “Statement1.sql” object shown in a visual format in design canvas 420) and the use of that database object within another project file 220 (e.g., the source code of the “EmployeeData” routine shown in pane 405. In one embodiment, at step 335, if the developer updates the composed query, e.g., adds additional columns from the “Department Name” table 422, the IDE tool 120 may update the text of the query statement 410 in the source code file, and in any other files which include the database query represented by the “Statement1.sql” database object. In other words, changes made in the design canvas 420 of the database query builder 232 are reflected in the Java code. This eliminates the need for manual copy/paste operations between source code and database development tools. Doing so provides application developers with a powerful, easy to use user interface. Thus, application developers, who may not have substantial SQL expertise, can still build complex SQL statements to include in source code files. Further, the IDE tool 120 manages the use of those statements throughout a software development project.
  • Note, although described relative to project file 220, which stores application source code, the IDE tool 120 may interact with a variety of different project artifacts that contain database query statements. For example documents in other source code languages, XML (or other markup languages) etc. may contain text representations of database queries. Further, although described relative to relational database statements (e.g., SQL) embodiments of the invention may be adapted for use with other database architectures (e.g., hierarchal databases such as the Information Management System (IMS) available from IBM).
  • Further, the IDE tool 120 may also be configured to assist developers working on the database side of data development project. Such developers may compose a variety of different development artifacts such as SQL script files, stored procedure definitions and other development files. For example, in one embodiment, the IDE tool 120 may create database access layers from SQL scripts or from within SQL editors containing such scripts. The code generation can also generate sample applications customized to match business needs, e.g. applications tailored to an existing database. This allows developers to quickly consume SQL resources within software applications being developed, significantly reducing many manual steps.
  • FIG. 5 illustrates a method 500 for generating application code associated with a database object, such as a SQL query statement, according to one embodiment of the invention. As shown, the method 500 begins at step 505 where a user navigates through a database data model using the IDE tool 120. And at step 510, the IDE tool 120 receives a selection of a database object, such as an SQL query script. FIG. 6 illustrates an example of this scenario in which a screen display 600 shows a user navigating through a data project explorer pane 605. Illustratively, the user has selected a database object 607 named “Statement1.sql” and right-clicked a mouse, resulting in the display of a context menu 609. Among other options, the context menu 609 includes a menu item to generate a stored procedure and a menu item 620 to generate query code for the selected database object.
  • A dialog box 615 shows the results of selecting the “generate query code” menu item 620. Among others, the dialog box 615 allows the developer to specify a source folder 625 to store code generated around the database object. In this example, the developer has selected to generate a new bean object (a Java construct) using radio button 630. Note, the bean object is used to store a result set generated from the query represented by the “Statement1.sql” database object. Further, a checkbox 635 is used to indicate that the IDE tool should generate a method interface for the selected database object 607 (i.e., the “Statement1.sql” object).
  • Returning to the method 500, at step 515, the IDE tool receives parameters for an application configured to access the selected database object, such as the ones illustrated in FIG. 6. The parameters specify what code objects should be generated to access/create/update the database object. At step 520, the IDE tool 120 generates application source code for the selected database object, according to the specified parameters. For example, the developer may select the “Finish” button of the dialog box 615. In this scenario, the IDE tool 120 responds by generating a Java package named “com.app” (entered in a textbox 635) with an interface and method named as shown in FIG. 6. Further, the generated code includes a Java bean named “MyJavaApp” to include a result set in 640.
  • Thus, once a database query is composed, the IDE tool may be configured to generate a relational-to-object interface for this database query. Further, at step 525, the IDE tool 120 may store the application code generated at step 520 as well as an indication of the relationship between the database object (i.e., the “Statement1.sql” object) and the generated source code (stored in the “com.app” source file. Thereafter, should the developer modify the database statement underlying the generated source code, the IDE tool may be configured to update the source code (or simply notify the developer that the database code has changed).
  • In one embodiment, the IDE tool 120 may be configured to generate stored procedures from the content of various project files 210. For example, a stored procedure may be generated from a Java method in the source code builder 234. A user interface may then be displayed to developer, which presents the proposed signature, input, output parameters, and types, etc. to provide a single click experience when creating stored procedures. Depending on business needs and practices followed by a development project, database routines such as stored procedures can be a significant part of database access. A stored procedure generally provides a subroutine available to applications accessing a relational database system. A stored procedure may be composed in many languages including SQL, Java, and other database or programming languages. FIG. 7 illustrates a method for generating a stored procedure for a database system from information maintained in a in a project file in a development project, such as a source code file, according to one embodiment of the invention.
  • As shown, the method 700 begins at step 705 where the IDE tool 120 receives a user selection of a project item to include in a stored procure. And at step 710, the IDE tool 120 identifies a mapping between program objects and database entities. For example, the user may select a program routine such as a Java method (composed using the source code builder 234), a SQL query (composed using the database query builder 232), or other development project artifact. FIG. 8 illustrates an example using the source code builder 234. Specifically, FIG. 8 illustrates an example screen display 800 generated by the IDE tool 120, according to one embodiment of the invention. As shown, the source code builder 234 displays the source code for a Java method 805 named “pqsp.” In this example, the developer has selected a line of source code (indicated by the highlighting and the position of a cursor 807) and right-clicked a mouse, resulting in the display of a context menu 810. Among other options, the context menu 810 includes a menu item 811 which the developer may select to generate a stored procedure from the selected program object (i.e., the Java method 805).
  • In one embodiment, in response, the IDE tool 120 may present the developer with dialog box 815. In this example, the user the dialog box 815 allows the developer to name a stored procedure to generate from the selected Java method 805 and presents the user with the mappings between the application source code (Java names 820) and the corresponding database object names (SQL names 825) identified by the IDE tool 120. That is, the dialog box 815 includes references to variable names in the source code, which map to objects in the database such as table/column names. Additionally, the developer may specify whether to deploy the stored procedure or save the stored procedure as one of the project files in the development project. At step 715 of method 700, once the developer completes specifying options in the dialog box 815, the “Finish” button may be used to generate and potentially deploy the stored procedure corresponding to the project file (e.g., the source code in Java method 805). And at step 720, the IDE tool 120 may store an indication of the relationship between the selected project item (e.g., the source code of the Java method 805) and the stored procedure generated from this project item. Thereafter, should the developer modify the database statement underlying the generated stored procedure, the IDE tool may be configured to update the source code (or simply notify the developer that the database code has changed).
  • The IDE tool may be configured to generate additional database objects from SQL statements stored inside project files (e.g., Java files or XML files). For example, a properties file used to bind SQL into database packages typically define properties on a per Java file basis. In one embodiment the IDE tool 120 ma maintains a connection between the java files containing the SQL and the options needed to perform the bind. Further, the IDE tool 120 may be configured to generate the database package from one or more SQL statements in program source code.
  • FIG. 9 illustrates a method 900 for generating a database package from project files associated with a development project, according to one embodiment of the invention. As shown, the method 900 begins at step 905, where the IDE tool 120 receives a selection of one or more project files to use in a database package. As noted, the project files may include program source code files. Similarly, the project files may also include XML files used to store a collection of SQL queries used by the Java Persistence API to allow a Java bean to interact with a database. In one embodiment, the developer may specify the properties file(s) to bind the SQL queries and build a database package from the queries in the project file. Accordingly, at step 910, the IDE tool 120 parses the selected project files to identify database queries in the file. At step 915, the IDE tool 120 may generate a database package that includes the identified queries. Optionally, the package may be deployed to a given database. As known, a database may generate an access plan for each query in the database package, improving database performance when such queries are invoked by an application.
  • At step 920, the IDE tool 120 may store an indication of the relationship between the selected project item and the database package generated from the project item identified at step 805. Thereafter, should the developer modify the database statement underlying the database package, the IDE tool 120 may be configured to update the database package (or simply notify the developer that the database code has changed).
  • Advantageously, as described herein, the IDE tool may be configured to assist developers working on a database aware software application. Such applications may include many distinct development artifacts, e.g., source code files, XML files, SQL scripts, archive files, etc. Embodiments of the invention provide development tools that connect various artifacts such as these in a database aware fashion. For example, embodiments of the invention integrate SQL query builders across multiple application development interfaces (e.g., a source code editor, XML editor, database scripting tools, etc.) significantly improving developer productivity, reducing development cost and time. Further, once incorporated into the source code, an IDE tool may monitor database objects generated using a query development. Subsequent changes to the query in the visual SQL builder result in updates to the text of a query statement in application source code. Thus, rather than require the developer to manually cut and paste the query from the development tool to the source code file each time it is changed during the development process, the IDE tool manages the relationship between these items for the developer within a given development project. Therefore, the IDE tool greatly simplifies both the development and maintenance of an application, particularly in cases where a complex, finely tuned query resides in multiple locations within a development project.
  • While the foregoing is directed to embodiments of the present invention, other and further embodiments of the invention may be devised without departing from the basic scope thereof, and the scope thereof is determined by the claims that follow.

Claims (20)

1. A computer-implemented method for an integrated development environment (IDE) tool to manage database aware application development, the method comprising:
executing the IDE tool on a computing system having at least a processor, a memory, and a storage device, wherein the IDE tool is configured to perform an operation, comprising:
presenting within an interface of the IDE tool, a display of the database data model,
receiving a selection of a database object of the database data model,
generating application source code configured to access the selected database object, and
storing an indication of the relationship between the database object and the application source code.
2. The method of claim 1, wherein the operation further comprises, prior to generating the application source code, receiving one or more parameters characterizing the application source code to be generated to access the database object.
3. The method of claim 1, wherein generating application source code comprises generating a stored procedure.
4. The method of claim 3, further comprising, deploying the stored procedure to a database engine.
5. The method of claim 1, wherein the operation further comprises:
receiving a request to access the application source code;
presenting the application source code on an editing pane of the IDE tool; and
in response to determining that one or more modifications have been made to the application source code, updating the selected database object to conform to the modifications made to the application source code.
6. The method of claim 1, wherein the operation further comprises:
receiving a request to access the selected database object;
presenting the database object on a design canvas of the IDE tool; and
in response to determining that one or more modifications have been made to the database object:
regenerating the application source code to conform to the modifications made to the database object.
7. The method of claim 1, wherein the database object comprises a database query.
8. The method of claim 7, wherein generating the application source code comprises generating a relational-to-object interface for the database query.
9. A computer-readable storage medium containing an integrated development environment (IDE) tool, which when executed on a processor, performs an operation to manage database aware application development, the operation comprising:
presenting within an interface of the IDE tool, a display of the database data model,
receiving a selection of a database object of the database data model,
generating application source code configured to access the selected database object, and
storing an indication of the relationship between the database object and the application source code.
10. The computer-readable storage medium of claim 9, further comprising, prior to generating the application source code, receiving one or more parameters characterizing the application source code to be generated to access the database object.
11. The computer-readable storage medium of claim 9, wherein generating application source code comprises generating a stored procedure.
12. The computer-readable storage medium of claim 11, wherein the operation further comprises, deploying the stored procedure to a database engine.
13. The computer-readable storage medium of claim 9, wherein the operation further comprises:
receiving a request to access the application source code;
presenting the application source code on an editing pane of the IDE tool; and
in response to determining that one or more modifications have been made to the application source code, updating the selected database object to conform to the modifications made to the application source code.
14. The computer-readable storage medium of claim 9, wherein the operation further comprises:
receiving a request to access the selected database object;
presenting the database object on a design canvas of the IDE tool; and
in response to determining that one or more modifications have been made to the database object:
regenerating the application source code to conform to the modifications made to the database object.
15. A system, comprising:
a processor; and
a memory containing an integrated development environment (IDE) tool, which when executed on a processor, performs an operation to manage database aware application development, the operation comprising
presenting within an interface of the IDE tool, a display of the database data model,
receiving a selection of a database object of the database data model,
generating application source code configured to access the selected database object, and
storing an indication of the relationship between the database object and the application source code.
16. The system of claim 15, further comprising, prior to generating the application source code, receiving one or more parameters characterizing the application source code to be generated to access the database object.
17. The system of claim 15, wherein generating application source code comprises generating a stored procedure.
18. The system of claim 17, wherein the operation further comprises, deploying the stored procedure to a database engine.
19. The system of claim 15, wherein the operation further comprises:
receiving a request to access the application source code;
presenting the application source code on an editing pane of the IDE tool; and
in response to determining that one or more modifications have been made to the application source code, updating the selected database object to conform to the modifications made to the application source code.
20. The system of claim 15, wherein the operation further comprises:
receiving a request to access the selected database object;
presenting the database object on a design canvas of the IDE tool; and
in response to determining that one or more modifications have been made to the database object:
regenerating the application source code to conform to the modifications made to the database object.
US12/537,121 2009-05-12 2009-08-06 Development environment configured to generate application source code from database objects Abandoned US20100293523A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US12/537,121 US20100293523A1 (en) 2009-05-12 2009-08-06 Development environment configured to generate application source code from database objects
US13/405,078 US8739116B2 (en) 2009-05-12 2012-02-24 Development environment configured to generate application source code from database objects

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12/464,712 US20100293524A1 (en) 2009-05-12 2009-05-12 Development environment for managing database aware software projects
US12/537,121 US20100293523A1 (en) 2009-05-12 2009-08-06 Development environment configured to generate application source code from database objects

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US12/464,712 Continuation US20100293524A1 (en) 2009-05-12 2009-05-12 Development environment for managing database aware software projects

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US13/405,078 Continuation US8739116B2 (en) 2009-05-12 2012-02-24 Development environment configured to generate application source code from database objects

Publications (1)

Publication Number Publication Date
US20100293523A1 true US20100293523A1 (en) 2010-11-18

Family

ID=43069543

Family Applications (4)

Application Number Title Priority Date Filing Date
US12/464,712 Abandoned US20100293524A1 (en) 2009-05-12 2009-05-12 Development environment for managing database aware software projects
US12/537,121 Abandoned US20100293523A1 (en) 2009-05-12 2009-08-06 Development environment configured to generate application source code from database objects
US13/405,066 Active US8732656B2 (en) 2009-05-12 2012-02-24 Development environment for managing database aware software projects
US13/405,078 Active US8739116B2 (en) 2009-05-12 2012-02-24 Development environment configured to generate application source code from database objects

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US12/464,712 Abandoned US20100293524A1 (en) 2009-05-12 2009-05-12 Development environment for managing database aware software projects

Family Applications After (2)

Application Number Title Priority Date Filing Date
US13/405,066 Active US8732656B2 (en) 2009-05-12 2012-02-24 Development environment for managing database aware software projects
US13/405,078 Active US8739116B2 (en) 2009-05-12 2012-02-24 Development environment configured to generate application source code from database objects

Country Status (1)

Country Link
US (4) US20100293524A1 (en)

Cited By (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20100114962A1 (en) * 2008-10-22 2010-05-06 Azadeh Ahadian Method and tools for identifying impact of database changes on an application
US20110154285A1 (en) * 2009-12-21 2011-06-23 Electronics And Telecommunications Research Institute Integrated management apparatus and method for embedded software development tools
US20110179404A1 (en) * 2010-01-20 2011-07-21 Aetna Inc. System and method for code automation
US20110208785A1 (en) * 2010-02-19 2011-08-25 International Business Machines Corporation Computation of impacted and affected code due to database schema changes
US20120131039A1 (en) * 2010-11-22 2012-05-24 Microsoft Corporation System and method for deploying logic in data files
US20120246145A1 (en) * 2011-03-25 2012-09-27 Management Systems Resources, Inc. Dynamically Generating a Plurality of Interfaces Using Structured Control Files
WO2012173830A3 (en) * 2011-06-16 2013-05-23 Microsoft Corporation Selection mapping between fetched files and source files
US20140007052A1 (en) * 2012-06-28 2014-01-02 International Business Machines Corporation Dynamically configuring an integrated development environment
US8732656B2 (en) 2009-05-12 2014-05-20 International Business Machines Corporation Development environment for managing database aware software projects
US20140208293A1 (en) * 2013-01-22 2014-07-24 Microgen Aptitude Limited SQL Visualizer
US20140325476A1 (en) * 2013-04-30 2014-10-30 Hewlett-Packard Development Company, L.P. Managing a catalog of scripts
US20150074081A1 (en) * 2013-09-06 2015-03-12 Sap Ag Entity-relationship model extensions using annotations
US20150095022A1 (en) * 2013-09-29 2015-04-02 Founder Apabi Technology Limited List recognizing method and list recognizing system
US20160132552A1 (en) * 2014-11-07 2016-05-12 Yunjiao Xue Odata custom query composer
US9354948B2 (en) 2013-09-06 2016-05-31 Sap Se Data models containing host language embedded constraints
US9361407B2 (en) 2013-09-06 2016-06-07 Sap Se SQL extended with transient fields for calculation expressions in enhanced data models
US9442977B2 (en) 2013-09-06 2016-09-13 Sap Se Database language extended to accommodate entity-relationship models
US9563714B2 (en) 2011-06-16 2017-02-07 Microsoft Technology Licensing Llc. Mapping selections between a browser and the original file fetched from a web server
US9619552B2 (en) 2013-09-06 2017-04-11 Sap Se Core data services extensibility for entity-relationship models
US9639572B2 (en) 2013-09-06 2017-05-02 Sap Se SQL enhancements simplifying database querying
US20170177304A1 (en) * 2015-12-18 2017-06-22 International Business Machines Corporation Dynamic setup of development environments
US9753699B2 (en) 2011-06-16 2017-09-05 Microsoft Technology Licensing, Llc Live browser tooling in an integrated development environment
CN108279885A (en) * 2017-01-03 2018-07-13 中国航发商用航空发动机有限责任公司 A kind of method and device that multiple model codes are carried out with Integrated Simulation
CN110018822A (en) * 2019-04-16 2019-07-16 山东浪潮通软信息科技有限公司 A kind of method and system automatically generating micro services function
CN111752542A (en) * 2020-06-26 2020-10-09 武汉众邦银行股份有限公司 Database query interface engine based on XML template
US11765152B2 (en) * 2019-07-25 2023-09-19 Microsoft Technology Licensing, Llc Related asset access based on proven primary asset access

Families Citing this family (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8429601B2 (en) * 2007-11-29 2013-04-23 Red Hat, Inc. Code completion for object relational mapping query language (OQL) queries
US8788519B2 (en) 2008-10-24 2014-07-22 John C. Canessa System and methods for metadata management in content addressable storage
US8453112B1 (en) * 2008-11-13 2013-05-28 Adobe Systems Incorporated Systems and methods for collaboratively creating applications using a multiple source file project that can be accessed and edited like a single file
US9250925B2 (en) * 2010-04-13 2016-02-02 Sybase, Inc. Adding inheritance support to a computer programming language
US8930470B2 (en) 2010-04-23 2015-01-06 Datcard Systems, Inc. Event notification in interconnected content-addressable storage systems
US20110265058A1 (en) * 2010-04-26 2011-10-27 Microsoft Corporation Embeddable project data
JP6420311B2 (en) 2013-03-15 2018-11-07 ベウラワークス,エルエルシー. System and method for facilitating data capture and user access to the data
US9274936B2 (en) 2013-05-29 2016-03-01 Sap Portals Israel Ltd Database code testing framework
JP6364786B2 (en) * 2014-01-24 2018-08-01 富士通株式会社 Design document management program, design document management method, and design document management apparatus
US10372760B2 (en) 2014-09-26 2019-08-06 Oracle International Corporation Building queries directed to objects hosted on clouds
US9710238B2 (en) * 2015-03-26 2017-07-18 IfWizard Corporation Automatically optimizing analytics database server
US9971572B2 (en) * 2015-10-30 2018-05-15 International Business Machines Corporation GUI-driven symbol management and code generator
CN107423342A (en) * 2017-05-10 2017-12-01 北京数码大方科技股份有限公司 Page data querying method and device
US10248385B1 (en) 2017-11-30 2019-04-02 International Business Machines Corporation Extracting mobile application workflow from design files
CN108629514A (en) * 2018-05-07 2018-10-09 襄阳市尚贤信息科技有限公司 A kind of engineering information technical management system
CN109670794A (en) * 2018-12-28 2019-04-23 广州影子科技有限公司 A kind of management system for breeding main interface design method at multi-function family
US10983789B2 (en) 2019-01-25 2021-04-20 Allstate Insurance Company Systems and methods for automating and monitoring software development operations
CN110213234B (en) * 2019-04-30 2022-06-28 深圳市腾讯计算机系统有限公司 Application program file developer identification method, device, equipment and storage medium
CN111241065B (en) * 2020-01-13 2024-01-30 大汉软件股份有限公司 Database adaptation development and operation method supporting domestic database
CN111259038B (en) * 2020-01-16 2023-05-30 北京思特奇信息技术股份有限公司 Database query and data export method, system, medium and device
CN112799659A (en) * 2021-01-12 2021-05-14 杨飞 Method, device and terminal for automatically generating data interface without programming

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6631497B1 (en) * 1999-07-19 2003-10-07 International Business Machines Corporation Binding data from data source to cells in a spreadsheet
US20040019589A1 (en) * 2002-07-25 2004-01-29 Basrur Rajesh G. Driver for mapping standard database queries and commands to markup language documents
US20040044687A1 (en) * 2002-08-30 2004-03-04 Thomas Vachuska Apparatus and method using pre-described patterns and reflection to generate a database schema
US6810429B1 (en) * 2000-02-03 2004-10-26 Mitsubishi Electric Research Laboratories, Inc. Enterprise integration system
US20040230555A1 (en) * 2003-05-16 2004-11-18 John Phenix System and method for representing a relational database as a java object
US20040257690A1 (en) * 2003-06-23 2004-12-23 Hitachi., Ltd. Magnetic recording apparatus, magnetic recording medium and magnetic recording method
US20040267690A1 (en) * 2003-06-26 2004-12-30 International Business Machines Corporation Integrated development environment with context sensitive database connectivity assistance
US20060095276A1 (en) * 2004-10-28 2006-05-04 Cogency Software, Inc. Role-oriented development environment
US7080361B2 (en) * 2001-07-30 2006-07-18 Lockheed Martin Corporation Process for generating enterprise java bean components from an SQL database
US20080005685A1 (en) * 2006-06-30 2008-01-03 Clemens Drews Interface mechanism for quickly accessing recently used artifacts in a computer desktop environment
US20080189679A1 (en) * 2007-02-05 2008-08-07 Jared Rodriguez Method and system for creating, deploying, and utilizing a service
US20100293524A1 (en) * 2009-05-12 2010-11-18 International Business Machines, Corporation Development environment for managing database aware software projects

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6631497B1 (en) * 1999-07-19 2003-10-07 International Business Machines Corporation Binding data from data source to cells in a spreadsheet
US6810429B1 (en) * 2000-02-03 2004-10-26 Mitsubishi Electric Research Laboratories, Inc. Enterprise integration system
US7080361B2 (en) * 2001-07-30 2006-07-18 Lockheed Martin Corporation Process for generating enterprise java bean components from an SQL database
US20040019589A1 (en) * 2002-07-25 2004-01-29 Basrur Rajesh G. Driver for mapping standard database queries and commands to markup language documents
US20040044687A1 (en) * 2002-08-30 2004-03-04 Thomas Vachuska Apparatus and method using pre-described patterns and reflection to generate a database schema
US20040230555A1 (en) * 2003-05-16 2004-11-18 John Phenix System and method for representing a relational database as a java object
US20040257690A1 (en) * 2003-06-23 2004-12-23 Hitachi., Ltd. Magnetic recording apparatus, magnetic recording medium and magnetic recording method
US20040267690A1 (en) * 2003-06-26 2004-12-30 International Business Machines Corporation Integrated development environment with context sensitive database connectivity assistance
US20060095276A1 (en) * 2004-10-28 2006-05-04 Cogency Software, Inc. Role-oriented development environment
US20080005685A1 (en) * 2006-06-30 2008-01-03 Clemens Drews Interface mechanism for quickly accessing recently used artifacts in a computer desktop environment
US20080189679A1 (en) * 2007-02-05 2008-08-07 Jared Rodriguez Method and system for creating, deploying, and utilizing a service
US20100293524A1 (en) * 2009-05-12 2010-11-18 International Business Machines, Corporation Development environment for managing database aware software projects

Cited By (47)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20100114962A1 (en) * 2008-10-22 2010-05-06 Azadeh Ahadian Method and tools for identifying impact of database changes on an application
US20120159433A1 (en) * 2008-10-22 2012-06-21 International Business Machines Corporation Method and tools for identifying impact of database changes on an application
US8458654B2 (en) * 2008-10-22 2013-06-04 International Business Machines Corporation Identifying impact of database changes on an application
US8499281B2 (en) * 2008-10-22 2013-07-30 International Business Machines Corporation Identifying impact of database changes on an application
US8739116B2 (en) 2009-05-12 2014-05-27 International Business Machines Corporation Development environment configured to generate application source code from database objects
US8732656B2 (en) 2009-05-12 2014-05-20 International Business Machines Corporation Development environment for managing database aware software projects
US20110154285A1 (en) * 2009-12-21 2011-06-23 Electronics And Telecommunications Research Institute Integrated management apparatus and method for embedded software development tools
US8555263B2 (en) * 2010-01-20 2013-10-08 Aetna Inc. System and method for code automation
US20110179404A1 (en) * 2010-01-20 2011-07-21 Aetna Inc. System and method for code automation
US20110208785A1 (en) * 2010-02-19 2011-08-25 International Business Machines Corporation Computation of impacted and affected code due to database schema changes
US8996564B2 (en) * 2010-11-22 2015-03-31 Microsoft Technology Licensing, Llc System and method for deploying logic in data files
US20120131039A1 (en) * 2010-11-22 2012-05-24 Microsoft Corporation System and method for deploying logic in data files
US20120246145A1 (en) * 2011-03-25 2012-09-27 Management Systems Resources, Inc. Dynamically Generating a Plurality of Interfaces Using Structured Control Files
US10635685B2 (en) 2011-03-25 2020-04-28 The Descartes Systems Group Inc. Dynamically generating a plurality of interfaces using structure control files
US9747265B2 (en) * 2011-03-25 2017-08-29 Management Systems Resources, Inc. Dynamically generating a plurality of interfaces using structured control files
WO2012173830A3 (en) * 2011-06-16 2013-05-23 Microsoft Corporation Selection mapping between fetched files and source files
US9460224B2 (en) 2011-06-16 2016-10-04 Microsoft Technology Licensing Llc. Selection mapping between fetched files and source files
US9563714B2 (en) 2011-06-16 2017-02-07 Microsoft Technology Licensing Llc. Mapping selections between a browser and the original file fetched from a web server
US9753699B2 (en) 2011-06-16 2017-09-05 Microsoft Technology Licensing, Llc Live browser tooling in an integrated development environment
US10594769B2 (en) 2011-06-16 2020-03-17 Microsoft Technology Licensing, Llc. Selection mapping between fetched files and source files
US10447764B2 (en) 2011-06-16 2019-10-15 Microsoft Technology Licensing, Llc. Mapping selections between a browser and the original fetched file from a web server
US8806434B2 (en) * 2012-06-28 2014-08-12 International Business Machines Corporation Dynamically configuring an integrated development environment
US20140007052A1 (en) * 2012-06-28 2014-01-02 International Business Machines Corporation Dynamically configuring an integrated development environment
US9135001B2 (en) 2012-06-28 2015-09-15 International Business Machines Corporation Dynamically configuring an integrated development environment
US9880815B2 (en) * 2013-01-22 2018-01-30 Aptitude Software Limited SQL visualizer
US20140208293A1 (en) * 2013-01-22 2014-07-24 Microgen Aptitude Limited SQL Visualizer
US9195456B2 (en) * 2013-04-30 2015-11-24 Hewlett-Packard Development Company, L.P. Managing a catalog of scripts
US20140325476A1 (en) * 2013-04-30 2014-10-30 Hewlett-Packard Development Company, L.P. Managing a catalog of scripts
US9354948B2 (en) 2013-09-06 2016-05-31 Sap Se Data models containing host language embedded constraints
US9619552B2 (en) 2013-09-06 2017-04-11 Sap Se Core data services extensibility for entity-relationship models
US9639572B2 (en) 2013-09-06 2017-05-02 Sap Se SQL enhancements simplifying database querying
US9442977B2 (en) 2013-09-06 2016-09-13 Sap Se Database language extended to accommodate entity-relationship models
US9430523B2 (en) * 2013-09-06 2016-08-30 Sap Se Entity-relationship model extensions using annotations
US9361407B2 (en) 2013-09-06 2016-06-07 Sap Se SQL extended with transient fields for calculation expressions in enhanced data models
US10095758B2 (en) 2013-09-06 2018-10-09 Sap Se SQL extended with transient fields for calculation expressions in enhanced data models
US20150074081A1 (en) * 2013-09-06 2015-03-12 Sap Ag Entity-relationship model extensions using annotations
US20150095022A1 (en) * 2013-09-29 2015-04-02 Founder Apabi Technology Limited List recognizing method and list recognizing system
US20160132552A1 (en) * 2014-11-07 2016-05-12 Yunjiao Xue Odata custom query composer
US10176218B2 (en) * 2014-11-07 2019-01-08 Sap Se OData custom query composer
US9733928B2 (en) * 2015-12-18 2017-08-15 International Business Machines Corporation Dynamic setup of development environments
US9690547B1 (en) * 2015-12-18 2017-06-27 International Business Machines Corporation Dynamic setup of development environments
US20170177327A1 (en) * 2015-12-18 2017-06-22 International Business Machines Corporation Dynamic setup of development environments
US20170177304A1 (en) * 2015-12-18 2017-06-22 International Business Machines Corporation Dynamic setup of development environments
CN108279885A (en) * 2017-01-03 2018-07-13 中国航发商用航空发动机有限责任公司 A kind of method and device that multiple model codes are carried out with Integrated Simulation
CN110018822A (en) * 2019-04-16 2019-07-16 山东浪潮通软信息科技有限公司 A kind of method and system automatically generating micro services function
US11765152B2 (en) * 2019-07-25 2023-09-19 Microsoft Technology Licensing, Llc Related asset access based on proven primary asset access
CN111752542A (en) * 2020-06-26 2020-10-09 武汉众邦银行股份有限公司 Database query interface engine based on XML template

Also Published As

Publication number Publication date
US8732656B2 (en) 2014-05-20
US20120151436A1 (en) 2012-06-14
US20120159432A1 (en) 2012-06-21
US8739116B2 (en) 2014-05-27
US20100293524A1 (en) 2010-11-18

Similar Documents

Publication Publication Date Title
US8739116B2 (en) Development environment configured to generate application source code from database objects
US9779133B2 (en) Contextual debugging of SQL queries in database-accessing applications
US8010946B2 (en) Apparatus for analysing and organizing artifacts in a software application
US8296311B2 (en) Solution search for software support
US8392880B2 (en) Rapid application development for database-aware applications
US9495356B2 (en) Automated interactive visual mapping utility and method for validation and storage of XML data
US7917815B2 (en) Multi-layer context parsing and incident model construction for software support
US20160170719A1 (en) Software database system and process of building and operating the same
US10691584B2 (en) Behavior driven development integration with test tool
US8166347B2 (en) Automatic testing for dynamic applications
US20210357577A1 (en) Logical, recursive definition of data transformations
US20070239762A1 (en) Automated interactive visual mapping utility and method for transformation and storage of XML data
US8782001B2 (en) Computation of impacted and affected code due to database schema changes
US9953279B1 (en) System and method for computer-assisted improvement of business intelligence ecosystem
US20150261507A1 (en) Validating sql queries in a report
Pollack et al. Spring Data: modern data access for enterprise Java
US20230004477A1 (en) Providing a pseudo language for manipulating complex variables of an orchestration flow
US20080022258A1 (en) Custom database system and method of building and operating the same
US8631393B2 (en) Custom database system and method of building and operating the same
JP5190241B2 (en) Information processing apparatus, information processing method, and program
West Professional Sitecore Development
Pipes et al. Pro MySQL
Cure NHibernate 2
Muench Building a Web Store with Struts & ADF Frameworks
Langit Reporting Tools

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO PAY ISSUE FEE