WO2008132006A1 - Rapid application development for database-aware applications - Google Patents

Rapid application development for database-aware applications Download PDF

Info

Publication number
WO2008132006A1
WO2008132006A1 PCT/EP2008/053916 EP2008053916W WO2008132006A1 WO 2008132006 A1 WO2008132006 A1 WO 2008132006A1 EP 2008053916 W EP2008053916 W EP 2008053916W WO 2008132006 A1 WO2008132006 A1 WO 2008132006A1
Authority
WO
WIPO (PCT)
Prior art keywords
database
application
source code
aware
ide
Prior art date
Application number
PCT/EP2008/053916
Other languages
French (fr)
Inventor
Stephen Andrew Brodsky
Sonali Surange
Rebecca Nin
Azadeh Ahadian
Original Assignee
International Business Machines Corporation
Ibm United Kingdom Limited
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 Corporation, Ibm United Kingdom Limited filed Critical International Business Machines Corporation
Publication of WO2008132006A1 publication Critical patent/WO2008132006A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/34Graphical or visual programming

Definitions

  • Embodiments of the invention are related to tools used to develop application software. More specifically, embodiments of the invention provide an intelligent integrated development environment (IDE) tool used for rapid application development of database- aware applications.
  • 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).
  • IDE tools provide little support for database statements embedded within the source code of an application.
  • the database statements may retrieve data from, or update/insert data into, the database.
  • database statements are usually specified as text strings in a database query language, such as SQL.
  • the following source code fragment illustrates an embedded SQL query using the Java® programming language: public interface get data ⁇
  • Database-aware software applications are typically built using an application programming interface (API) that provides a means to use native query languages (e.g., SQL used to access relational data sources) using API calls included within program source code.
  • API application programming interface
  • native query languages e.g., SQL used to access relational data sources
  • JDBC Java Database Connectivity
  • JDBC Java Database Connectivity
  • the JDBC API allows developers to embed database statements as text strings that are passed to a program that manages the database. Although effective, this approach may require substantial development time, as the developer is required to write all of the necessary source code to create a connection to a particular database, to pass the text of a database query to the database, to receive query results, and to store the results in an object of the application program; none of which is likely to be part of the core functions of an application. That is, the application program typically retrieves information from the database to perform some other logic or processing. For example, in the code fragment listed above, only the final step of "process query results" is likely to be related to the intended function of the application. The rest is simply overhead the developer must incur for the database-aware application to access an external database.
  • the developer must write all of the necessary source code to test each element of the application that accesses an external data source (i.e., each database-statement embedded within the source code of the application).
  • an external data source i.e., each database-statement embedded within the source code of the application.
  • Embodiments of the invention provide an intelligent integrated development environment (IDE) tool for database-aware application development.
  • IDE intelligent integrated development environment
  • embodiments of the invention may be used to generate a software component configured to access a specified database using an appropriate API.
  • the generated component may include a collection of database queries and the appropriate API calls to create, retrieve, update, and delete records from a given database.
  • the developer may invoke methods provided by the component to perform database operations without having to write the component from scratch. By doing so, the developer may focus on the key task of application development, instead of writing the incidental (but necessary) code used to access the database.
  • the IDE tool may be configured to generate unit tests used to evaluate the functioning of the generated component.
  • One embodiment of the invention includes a method for generating source code for a database-aware software application.
  • the method generally includes receiving, from a user interacting with an IDE tool, a selection of a database element and generating at least one database statements to access the database element.
  • the method also includes encapsulating the at least one database statements within source code of a programming language in which the database-aware software application is being written, storing the source code within a project file associated with the database-aware software application, and displaying the source code in an editing pane of the IDE tool.
  • Another embodiment of the invention includes a computer program product comprising a computer useable storage medium having a computer readable program, where the computer readable program when executed on a computer causes the computer to perform an operation.
  • the operation may generally include receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element and generating at least one database statements to access the database element.
  • IDE integrated development environment
  • the operation may also include encapsulating the at least one database statements within source code of a programming language in which the database-aware software application is being written.
  • the operation may also include storing the source code within a project file associated with the database-aware software application and displaying the source code in an editing pane of the IDE tool.
  • Another embodiment of the invention includes a system having a processor and a memory containing an IDE tool configured to generate source code for a database-aware software application.
  • the operation may generally include receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element and generating at least one database statements to access the database element.
  • the operation may also include encapsulating the at least one database statements within source code of a programming language, wherein the user is writing the database-aware software application in the programming language, storing the source code within a project file associated with the database-aware software application, and displaying the source code in an editing pane of the IDE tool.
  • IDE integrated development environment
  • Figure 1 illustrates an exemplary computing system, according to one embodiment of the invention.
  • Figure 2 illustrates a method performed by an IDE tool configured to provide rapid application development for database-aware applications, according to one embodiment of the invention.
  • Figure 3 illustrates screenshots of an exemplary IDE tool configured to provide database connectivity from within a development project, according to one embodiment of the invention.
  • Figure 4 illustrates a screenshot of an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention.
  • Figure 5 illustrates a screenshot of an exemplary IDE tool configured to allow a developer to specify a variety of options for generating source code for a database-aware application, according to one embodiment of the invention.
  • Figure 6 illustrates a screenshot of an exemplary IDE tool configured to allow a developer to specify mappings between elements of a database and variables defined within the source code of a database-aware application, according to one embodiment of the invention.
  • Figure 7 illustrates a method performed by an IDE tool configured to provide rapid application development for database-aware applications, according to one embodiment of the invention.
  • Figure 8 illustrates a screenshot from an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention.
  • Embodiments of the invention provide application development tools that allow developers to rapidly build database-aware applications and database unit tests.
  • Embodiments of the invention support multiple scenarios for database-aware application development, including beginning from a database table and automatically creating application code to access the table, beginning from an existing database query, beginning from existing application code that accesses a database, and hybrids or variations of these approaches.
  • embodiments of the invention provide automatic code generation, query generation for multiple languages, and unit test automation, leaving the developer to spend more time focused on designing and writing code to perform the intended functions of a database-aware application.
  • the developer may make frequent use of unit-test programs executed during application development, providing seamless integration of database connectivity with the regular development process.
  • embodiments of the invention may significantly reduce application development and testing overhead related cost.
  • 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., writable DVDs, RW-CDs, and hard- disk drives) 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.
  • an embodiment of the invention is described herein relative to an IDE tool used to develop a database-aware software application using the Java® programming language that includes embedded SQL statements.
  • IDE tool used to develop a database-aware software application using the Java® programming language that includes embedded SQL statements.
  • embodiments of the invention may be adapted for use with a wide variety of programming languages used to develop database-aware applications.
  • embodiments of the invention may be adapted for use with other database query languages.
  • FIG. 1 is a block diagram that illustrates an example view of a computing environment 100, according to one embodiment of the invention.
  • computing environment 100 includes computer system 120.
  • Computer system 120 is included to be representative of existing computer systems, e.g., desktop computers, server computers, laptop computers, tablet computers and the like.
  • embodiments of the invention are not limited to any particular computing system, application, device, or network architecture and instead, may be adapted to take advantage of new computing systems and platforms as they become available.
  • Figure 1 illustrates a single computer system, those skilled in the art will recognize that embodiments of the invention may be adapted for use on multiple systems configured to communicate over a network. Additionally, those skilled in the art will recognize that the illustration of computer system 120 is simplified to highlight aspects of the present invention and that computing systems and data communication networks typically include a variety of additional elements not shown in Figure 1.
  • computer system 120 includes a processor (or processors) 122, a storage device 124, a networking device 125, and a memory 126, all connected by a bus 121.
  • CPU 122 is a programmable logic device that executes user applications (e.g., an IDE tool 130).
  • Computer system 120 may be connected to a display device 115 and at least one input devices 117.
  • user input devices 117 include a mouse pointing device and a keyboard
  • display device 115 is a CRT monitor or LCD display.
  • the processing activity and hardware resources on computer system 120 may be managed by an operating system (not shown).
  • Operating system not shown.
  • Operating system include the Windows® operating system, distributions of the Linux® operating system, and IBM's i5/OS® operating system, among others. (Linux is a trademark of Linus Torvalds in the US, other countries, or both).
  • Network device 125 may connect computer system 120 to any kind of data communications network, including both wired and wireless networks.
  • Storage device 126 stores application programs and data for use by computer system 120.
  • Typical storage devices include hard-disk drives, flash memory devices, optical media, network and virtual storage devices, and the like.
  • storage device 126 contains a database 140 and a development project 144.
  • Database 140 may store a collection of data records organized according to a data model 142.
  • data model 142 may provide a relational schema of tables, columns, and keys for organizing data records stored in database 140 and accessed using SQL database statements.
  • Development project 144 represents a collection of information used to build a software application.
  • development project 144 may include source code files, scripts, etc., along with resources such as fonts, images, build-instructions, and project documentation, etc.
  • memory 124 stores a number of software applications, including an IDE tool 130, a query parser 134, and a query tool 136. Also, memory 124 includes a project file 132.
  • Query parser 134 may be a software application configured to evaluate a database statement for both syntactic and semantic correctness.
  • query tool 136 may be a software application configured to execute a valid database statement (e.g., an SQL query).
  • IDE tool 130 may be configured to pass database statements to query tool 136 for execution.
  • IDE tool 130 is a software application used to develop other software applications. Typically, IDE tool 130 combines an editor, a compiler and other useful tools in the same software package. In one embodiment, IDE tool 130 is configured to generate elements of source code for a database-aware software application. For example, in one embodiment,
  • IDE tool 130 may generate the appropriate source code to connect to a database associated with development project 144 along with objects that encapsulate database statements used to create new records and to retrieve, update, and delete existing records from database 140. Further, IDE tool 130 may generate all of the necessary source code allowing the developer to invoke these operations from within application source code (e.g., a collection of Java® methods exposed through an interface provided by a Java® bean object).
  • application source code e.g., a collection of Java® methods exposed through an interface provided by a Java® bean object.
  • IDE tool 130 may be configured to generate and execute unit tests to test the functionality of the database-aware application as it is being developed.
  • IDE tool 130 may be configured to generate and execute unit tests to test the functionality of the database-aware application as it is being developed.
  • IDE tool 130 may also be configured to generate database-aware application code around an existing query. Building an application for a known, often highly- customized and complex database query is a common requirement. The query itself can be a combination of various languages (e.g., SQL, xquery, Java host variables). Writing a database-aware application around such a query requires the developer to have full knowledge of each language and the metadata and/or data model associated with the syntax of each database language (e.g., SQL, xquery, Java) and the parser technologies. IDE tool 130 hides this complexity from the developer by generating an application around such an existing query.
  • languages e.g., SQL, xquery, Java
  • Project file 132 represents a file included in development project 144 that is being edited by a developer using IDE tool 130, e.g., a source code file of a database aware software application.
  • IDE tool 130 may display the text of the source code to the developer on display device 115 and provide an interface that allows the user to edit project file 132.
  • database-aware application source code generated by IDE tool 130 may be stored in project file 132.
  • Figures 2-6 illustrate an embodiment of IDE tool 130 configured to generate database access code for an existing database.
  • Figures 7-8 illustrate an embodiment of IDE tool 130 configured to generate database access code around a pre-existing database query.
  • Figure 2 illustrates a method 200 that may be performed by IDE tool 130 to provide rapid application development for database-aware applications, according to one embodiment of the invention.
  • the method begins at step 205 where IDE tool 130 receives parameters related to an existing database to associate with a development project (e.g., development project 140).
  • a development project e.g., development project 140
  • Figure 3 illustrates screenshots of an exemplary IDE tool configured to provide database connectivity from within a development project.
  • a developer has created a development project 325 with the name "MyJavaPrj.”
  • IDE tool 130 may respond by displaying a menu like menu 312
  • menu 213 includes a menu item 320 labeled
  • Dialog box 305 includes a list of available connections 310 and a table 315 a set of properties associated with a currently- highlighted database connection.
  • IDE tool 130 may establish a connection with the database specified at step 205. Additionally, IDE tool 130 may associate the parameters of the database connection with development project 144. IDE tool 130 provides ease of use so that information needed for executing such a test program such as a connection URL, user name and/or password does not need to be provided manually by the developer. Thus, the developer may save the development project and resume it at a later time without also having to recreate the database connection for a given project.
  • IDE tool 130 may obtain a data model (e.g., data model 142) for the database associated with the database project.
  • a data model for a relational database includes a collection of tables, columns names, column data types, keys (i.e., table-to-table relationships) etc.
  • the IDE tool need not maintain an active connection to a database. Instead, IDE tool 130 may cache the data model obtained at step 215, and update it either periodically or as specified by the developer. Thus, a developer may work offline or disconnected when building the database-aware application. This may be useful where the database-aware application being developed is associated with a "live" or "production” database and maintaining an open connection would be disruptive of the "production" use of the database.
  • IDE tool 130 may be configured to display elements of the data model as part of the development project.
  • IDE tool 130 may present a tree-like hierarchy beginning from a database name which when expanded lists each table present in the data model.
  • each table may be expanded to show each of the columns present in a given table.
  • the database connection may be used to integrate components of database structure as part of a given development project.
  • IDE tool 130 may be configured to generate application source code to access data records in the database.
  • the IDE tool 130 may receive a selection of a database element.
  • IDE tool 130 may generate application code to connect with and access the selected database element.
  • IDE tool may generate a set of database statements encapsulated within API calls to access records from a relational table.
  • Figure 4 illustrates a screenshot 400 of an exemplary IDE tool configured to generate source code for a database- aware application, according to one embodiment of the invention.
  • screenshot 400 shows a tree hierarchy 405 that includes elements of a database associated with a development project.
  • Tree hierarchy 405 includes a database table 410 named "MYDEPARTMENT.” Further, information related to the columns, constraints, dependencies, indexes, and triggers is available for database table 410 in tree hierarchy 405.
  • screenshot 400 shows the interface of IDE tool 130 being used to select a database table and have IDE tool 130 generate application source code used to access the selected table. Specifically, a user has right-clicked on table 410, and in response, IDE tool
  • Figure 5 illustrates a screenshot 500 of an exemplary IDE tool configured allow a developer to specify a variety of options for generating source code for a database-aware application.
  • this example is based on an IDE tool configured to generate a Java® bean object that accesses a relational database table.
  • embodiments of the invention may be adapted for use with other programming languages and types of database.
  • a developer has used a radio button 505 to specify whether the fields of the Java® bean to be generated are "public” or “protected” and has used checkboxes 510 to specify which SQL queries IDE tool 130 should generate and encapsulate within the Java® bean to be generated.
  • the developer has selected a global "generate all SQL statements" option.
  • queries are created to create, retrieve, update, and delete records from the database. Further, queries for each of these operations are created at the table, parameter, and record level of the underlying database.
  • IDE tool 130 may be configured to determine relationships that may exist and propose join statements used to combine information from (or store information in) multiple database tables.
  • IDE tool 130 may use the SQL model metadata (i.e., data model 142 of Figure 1) for this process.
  • SQL model metadata i.e., data model 142 of Figure 1
  • default database queries and methods are provided as suggestions and the developer may chose to generate one of all of the statements and integrated query editing tools, allowing productive customization of these default queries.
  • IDE tool 130 may allow developer customizations to improve code readability and/or compliance to coding standards where applicable by providing developers with the ability to specify object names (a label used within application source code) from schema names (a label used within a relational database). A mapping may be generated to link two related labels.
  • Figure 6 illustrates a screenshot 600 of an exemplary
  • screenshot 600 includes a table 610 listing mapping between a column in a database table and an object filed name within a Java® bean object.
  • the column 615 named "ADMRDEPT" maps to the bean field name 620 of "admrdept change.”
  • IDE tool may use the Java® programming language construct of an annotation to manage these links.
  • IDE tool 130 may be configured to generate application source code to access the elements of the database specified at steps 205 and 225.
  • IDE tool 130 may generate source code to create a database connection, generate host variables mapping to columns and fields of the database, and methods that pass queries to the database over the database connection.
  • IDE tool 130 may be configured to generate source code based on a particular API, e.g., the JDBC API which allows an application written in the Java® programming language to establish a connection with a database and to transmit and receive query results from the database.
  • IDE tool 130 may also generate unit test code that the developer may use to evaluate the application code generated at step 230. That is, developers can chose to generate sample programs and unit tests that exercise all or some parts of the code generated at step 230. Thus, developers do not have to write a single line of code to effectively test portions of a database aware application, and can instead test database access by an application with one click.
  • the IDE tool 130 may generate unit tests to test each of the create, retrieve, update, and delete methods generated by the IDE tool 130.
  • the sample unit test program achieves this by executing first test query to retrieve all rows of table from the database. A second test query is then executed to retrieve first row in order to test a retrieve by parameter/object query.
  • the unit test then updates the row with sample test values, deletes it and inserts it back, into the database which tests the application source code generated to perform the update, delete and create operations respectively in the application.
  • the status of the underlying database remains intact at the end of a successful test execution. Further, in one embodiment, a rollback is called at the end in case of failure.
  • IDE tool 130 provides ease of use so that information needed to execute such a test program (e.g., connection URL, user name, password) need not be provided manually by the user. IDE tool 130 may use this information from the connection associated with the project to automatically execute the unit test program. Thus the developer is provided with a one-click mechanism to run the sample program. Further, the unit test program may be integrated with a project save mechanism such that when the unit test is regenerated or manually changed, the save action compiles and runs it. IDE tool 130 may also provide execution time and other statistical information related to program and/or database query performance.
  • information needed to execute such a test program e.g., connection URL, user name, password
  • IDE tool 130 may use this information from the connection associated with the project to automatically execute the unit test program. Thus the developer is provided with a one-click mechanism to run the sample program.
  • the unit test program may be integrated with a project save mechanism such that when the unit test is regenerated or manually changed, the save action compiles and runs it.
  • IDE tool 130 may be configured to use an existing database query and generate application source code around such an existing query.
  • Figure 7 illustrates a method performed by an IDE tool configured to provide rapid application development beginning from an existing database query, according to one embodiment of the invention.
  • method 700 beings at step 705 where IDE tool 130 is passed a database query.
  • the query may be embedded within the source code of an application program being edited using IDE tool 130, or may also provided to IDE tool 130 as part of a text file, script, URL, etc.
  • the IDE tool may determine whether a connection to a database referenced by the query has been established. As described above, the developer may have associated a database with a given development project. If not, at step 715 the IDE tool may create a connection with the database referenced by the query received at step 705.
  • Figure 8 illustrates a screenshot 800 from an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention.
  • screenshot 800 includes an editing pane 815 of IDE tool 130 displaying a portion of source code from a database-aware application.
  • the source code included a text-string 810 representing a database query.
  • the SQL query "select * from SSURANGE.MYDEP ARTMENT.” This query retrieves all records from a "MYDEPARTMENT" table of a database named "SSURANGE.”
  • the user has selected a "Database Assist" item from a menu provided by IDE tool 130.
  • IDE tool 130 may determine whether a connection with the "SSURANGE" database has been established as part of a currently active development project. If not, then at step 715 IDE tool 130 may establish a connection with this database.
  • the IDE tool may generate database access code for the database elements referenced in the query selection received at step 705. As described above, this may include generating application source code and database queries to create, retrieve, update, and delete records from an underlying database.
  • the code generated at step 720 may be added to the currently active development project. For example, as shown in Figure 8, menu item 805 is selected and, in response, IDE tool 130 may generate a Java® bean encapsulating both query 810, as well as other queries (e.g., a create, update, and delete query) of the database element referenced in query 810 (i.e., the "MYDEPARTMENT" table of the "SSURANGE" database).
  • embodiments of the invention provide an integrated development environment (IDE) tool used for rapid application development of database- aware applications.
  • IDE integrated development environment
  • developers are typically forced to write all of the database access layer code from scratch. That is, developers have to write application source code to create a connection to a given database, compose individual queries, and encapsulate the queries within API calls for a given programming language.
  • IDE tools lack database integration, developers have to switch around using multiple, independent tools.
  • Embodiments of the invention address this by integrating database connectivity within an IDE.
  • a developer may select an existing database element (e.g., a table) and the IDE tool may generate all of the application source code, API calls and database queries needed for a functioning database- aware application.
  • a developer may generate application source code from an existing database query, either part of application source code or otherwise. Therefore, development cycle time may be significantly reduced as the developer.
  • development cycle time may be significantly reduced as the developer.
  • one of skill in the art will readily recognize that the rapid application development tool described herein may be tailored to accommodate a variety of other scenarios.
  • embodiments of the invention provide developers with the ability to easily generate source code for a database-aware application and to easily unit test scenarios.
  • embodiments of the invention may be used to test database connectivity and functionality for a database-aware application using the same IDE interface used to create the software application.
  • the development may rely on the single, database-aware IDE.

Abstract

Embodiments of the invention provide application development tools that allow developers to rapidly build database-aware applications and database unit tests. Embodiments of the invention support multiple scenarios for database-aware application development, including beginning from a database table and automatically creating application code to access the table, beginning from an existing database query, beginning from existing application code that accesses a database, and hybrids or variations of these approaches.

Description

RAPID APPLICATION DEVELOPMENT FOR DAT ABASE- AWARE
APPLICATIONS
FIELD OF THE INVENTION
Embodiments of the invention are related to tools used to develop application software. More specifically, embodiments of the invention provide an intelligent integrated development environment (IDE) tool used for rapid application development of database- aware applications.
BACKGROUND OF THE INVENTION
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).
Although very useful, these IDE tools have a variety of limitations. For example, IDE tools provide little support for database statements embedded within the source code of an application. The database statements may retrieve data from, or update/insert data into, the database. In the program source code, database statements are usually specified as text strings in a database query language, such as SQL. The following source code fragment illustrates an embedded SQL query using the Java® programming language: public interface get data {
// create connection to database
@select sql= ("select column A, column B from database.table"); // execute sql statement // process query results
}
Because the actual database query is enclosed within double-quotes, conventional IDE's treat the database statement as a text string, with no restrictions on string content.
Database-aware software applications are typically built using an application programming interface (API) that provides a means to use native query languages (e.g., SQL used to access relational data sources) using API calls included within program source code. For example, the well known JDBC (Java Database Connectivity) API is a specification for connecting programs written in the Java® programming language to a variety of commercially-available databases.
The JDBC API allows developers to embed database statements as text strings that are passed to a program that manages the database. Although effective, this approach may require substantial development time, as the developer is required to write all of the necessary source code to create a connection to a particular database, to pass the text of a database query to the database, to receive query results, and to store the results in an object of the application program; none of which is likely to be part of the core functions of an application. That is, the application program typically retrieves information from the database to perform some other logic or processing. For example, in the code fragment listed above, only the final step of "process query results" is likely to be related to the intended function of the application. The rest is simply overhead the developer must incur for the database-aware application to access an external database. Similarly, the developer must write all of the necessary source code to test each element of the application that accesses an external data source (i.e., each database-statement embedded within the source code of the application). Thus, the developer spends significant time performing tasks that, while necessary, are unrelated to writing the source code that performs the intended functions of an application being developed.
Moreover, the total development experience for a quality application grows exponentially difficult as complexity of the database accesses increase. Further, as the IDE environment does not provide database connectivity or programming assistance for the database statements embedded within the source code of an application program, developers are forced to juggle between various tools, spending substantial time to even get a database- aware application up and running before writing the core of the application, resulting in added cost to the application development process.
Accordingly, there remains a need for an IDE tool that provides rapid application development support for database-aware applications.
SUMMARY OF THE INVENTION
Embodiments of the invention provide an intelligent integrated development environment (IDE) tool for database-aware application development. For example, embodiments of the invention may be used to generate a software component configured to access a specified database using an appropriate API. The generated component may include a collection of database queries and the appropriate API calls to create, retrieve, update, and delete records from a given database. Once the component is generated, the developer may invoke methods provided by the component to perform database operations without having to write the component from scratch. By doing so, the developer may focus on the key task of application development, instead of writing the incidental (but necessary) code used to access the database. Additionally, the IDE tool may be configured to generate unit tests used to evaluate the functioning of the generated component.
One embodiment of the invention includes a method for generating source code for a database-aware software application. The method generally includes receiving, from a user interacting with an IDE tool, a selection of a database element and generating at least one database statements to access the database element. The method also includes encapsulating the at least one database statements within source code of a programming language in which the database-aware software application is being written, storing the source code within a project file associated with the database-aware software application, and displaying the source code in an editing pane of the IDE tool.
Another embodiment of the invention includes a computer program product comprising a computer useable storage medium having a computer readable program, where the computer readable program when executed on a computer causes the computer to perform an operation. The operation may generally include receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element and generating at least one database statements to access the database element. The operation may also include encapsulating the at least one database statements within source code of a programming language in which the database-aware software application is being written. The operation may also include storing the source code within a project file associated with the database-aware software application and displaying the source code in an editing pane of the IDE tool.
Another embodiment of the invention includes a system having a processor and a memory containing an IDE tool configured to generate source code for a database-aware software application. The operation may generally include receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element and generating at least one database statements to access the database element. The operation may also include encapsulating the at least one database statements within source code of a programming language, wherein the user is writing the database-aware software application in the programming language, storing the source code within a project file associated with the database-aware software application, and displaying the source code in an editing pane of the IDE tool.
BRIEF DESCRIPTION OF THE DRAWINGS
Preferred embodiments of the present invention will now be described, by way of example only, with reference to the following drawings in which: Figure 1 illustrates an exemplary computing system, according to one embodiment of the invention.
Figure 2 illustrates a method performed by an IDE tool configured to provide rapid application development for database-aware applications, according to one embodiment of the invention.
Figure 3 illustrates screenshots of an exemplary IDE tool configured to provide database connectivity from within a development project, according to one embodiment of the invention.
Figure 4 illustrates a screenshot of an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention.
Figure 5 illustrates a screenshot of an exemplary IDE tool configured to allow a developer to specify a variety of options for generating source code for a database-aware application, according to one embodiment of the invention.
Figure 6 illustrates a screenshot of an exemplary IDE tool configured to allow a developer to specify mappings between elements of a database and variables defined within the source code of a database-aware application, according to one embodiment of the invention.
Figure 7 illustrates a method performed by an IDE tool configured to provide rapid application development for database-aware applications, according to one embodiment of the invention.
Figure 8 illustrates a screenshot from an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
Embodiments of the invention provide application development tools that allow developers to rapidly build database-aware applications and database unit tests. Embodiments of the invention support multiple scenarios for database-aware application development, including beginning from a database table and automatically creating application code to access the table, beginning from an existing database query, beginning from existing application code that accesses a database, and hybrids or variations of these approaches. Advantageously, embodiments of the invention provide automatic code generation, query generation for multiple languages, and unit test automation, leaving the developer to spend more time focused on designing and writing code to perform the intended functions of a database-aware application. Further, the developer may make frequent use of unit-test programs executed during application development, providing seamless integration of database connectivity with the regular development process. Thus, embodiments of the invention may significantly reduce application development and testing overhead related cost.
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, in various embodiments the invention provides numerous advantages over the prior art. However, 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., writable DVDs, RW-CDs, and hard- disk drives) 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.
Additionally, an embodiment of the invention is described herein relative to an IDE tool used to develop a database-aware software application using the Java® programming language that includes embedded SQL statements. One of ordinary skill in the art will readily recognize, however, that embodiments of the invention may be adapted for use with a wide variety of programming languages used to develop database-aware applications. Similarly, embodiments of the invention may be adapted for use with other database query languages.
Figure 1 is a block diagram that illustrates an example view of a computing environment 100, according to one embodiment of the invention. As shown, computing environment 100 includes computer system 120. Computer system 120 is included to be representative of existing computer systems, e.g., desktop computers, server computers, laptop computers, tablet computers and the like. However, embodiments of the invention are not limited to any particular computing system, application, device, or network architecture and instead, may be adapted to take advantage of new computing systems and platforms as they become available. Further, although Figure 1 illustrates a single computer system, those skilled in the art will recognize that embodiments of the invention may be adapted for use on multiple systems configured to communicate over a network. Additionally, those skilled in the art will recognize that the illustration of computer system 120 is simplified to highlight aspects of the present invention and that computing systems and data communication networks typically include a variety of additional elements not shown in Figure 1.
As shown, computer system 120 includes a processor (or processors) 122, a storage device 124, a networking device 125, and a memory 126, all connected by a bus 121. CPU 122 is a programmable logic device that executes user applications (e.g., an IDE tool 130). Computer system 120 may be connected to a display device 115 and at least one input devices 117. Typically, user input devices 117 include a mouse pointing device and a keyboard, and display device 115 is a CRT monitor or LCD display. The processing activity and hardware resources on computer system 120 may be managed by an operating system (not shown). Well known examples of operating systems include the Windows® operating system, distributions of the Linux® operating system, and IBM's i5/OS® operating system, among others. (Linux is a trademark of Linus Torvalds in the US, other countries, or both). Network device 125 may connect computer system 120 to any kind of data communications network, including both wired and wireless networks.
Storage device 126 stores application programs and data for use by computer system 120.
Typical storage devices include hard-disk drives, flash memory devices, optical media, network and virtual storage devices, and the like. As shown, storage device 126 contains a database 140 and a development project 144. Database 140 may store a collection of data records organized according to a data model 142. For example, data model 142 may provide a relational schema of tables, columns, and keys for organizing data records stored in database 140 and accessed using SQL database statements. Development project 144 represents a collection of information used to build a software application. For example, development project 144 may include source code files, scripts, etc., along with resources such as fonts, images, build-instructions, and project documentation, etc.
As shown, memory 124 stores a number of software applications, including an IDE tool 130, a query parser 134, and a query tool 136. Also, memory 124 includes a project file 132.
Query parser 134 may be a software application configured to evaluate a database statement for both syntactic and semantic correctness. And query tool 136 may be a software application configured to execute a valid database statement (e.g., an SQL query). In one embodiment, IDE tool 130 may be configured to pass database statements to query tool 136 for execution.
IDE tool 130 is a software application used to develop other software applications. Typically, IDE tool 130 combines an editor, a compiler and other useful tools in the same software package. In one embodiment, IDE tool 130 is configured to generate elements of source code for a database-aware software application. For example, in one embodiment,
IDE tool 130 may generate the appropriate source code to connect to a database associated with development project 144 along with objects that encapsulate database statements used to create new records and to retrieve, update, and delete existing records from database 140. Further, IDE tool 130 may generate all of the necessary source code allowing the developer to invoke these operations from within application source code (e.g., a collection of Java® methods exposed through an interface provided by a Java® bean object).
Additionally, IDE tool 130 may be configured to generate and execute unit tests to test the functionality of the database-aware application as it is being developed. Thus, unlike conventional development methodologies where the database statements are only tested when the application is built and executed, embodiments of the present invention allow database testing to become an integrated part of the database software development process.
In another embodiment, IDE tool 130 may also be configured to generate database-aware application code around an existing query. Building an application for a known, often highly- customized and complex database query is a common requirement. The query itself can be a combination of various languages (e.g., SQL, xquery, Java host variables). Writing a database-aware application around such a query requires the developer to have full knowledge of each language and the metadata and/or data model associated with the syntax of each database language (e.g., SQL, xquery, Java) and the parser technologies. IDE tool 130 hides this complexity from the developer by generating an application around such an existing query.
Project file 132 represents a file included in development project 144 that is being edited by a developer using IDE tool 130, e.g., a source code file of a database aware software application. IDE tool 130 may display the text of the source code to the developer on display device 115 and provide an interface that allows the user to edit project file 132. In one embodiment, database-aware application source code generated by IDE tool 130 may be stored in project file 132.
Figures 2-6 illustrate an embodiment of IDE tool 130 configured to generate database access code for an existing database. Figures 7-8 illustrate an embodiment of IDE tool 130 configured to generate database access code around a pre-existing database query.
Figure 2 illustrates a method 200 that may be performed by IDE tool 130 to provide rapid application development for database-aware applications, according to one embodiment of the invention. As shown, the method begins at step 205 where IDE tool 130 receives parameters related to an existing database to associate with a development project (e.g., development project 140). For example, Figure 3 illustrates screenshots of an exemplary IDE tool configured to provide database connectivity from within a development project. In the example of Figure 3, a developer has created a development project 325 with the name "MyJavaPrj." When a developer right-clicks on this project, IDE tool 130 may respond by displaying a menu like menu 312 Illustratively, menu 213 includes a menu item 320 labeled
"add database connection to current project." By selecting menu item 320, a user may cause IDE tool 130 to display a dialog box like dialog box 305. Dialog box 305 includes a list of available connections 310 and a table 315 a set of properties associated with a currently- highlighted database connection.
Once the developer specifies the properties of a desired database connection, then at step 210, IDE tool 130 may establish a connection with the database specified at step 205. Additionally, IDE tool 130 may associate the parameters of the database connection with development project 144. IDE tool 130 provides ease of use so that information needed for executing such a test program such as a connection URL, user name and/or password does not need to be provided manually by the developer. Thus, the developer may save the development project and resume it at a later time without also having to recreate the database connection for a given project.
At step 215, IDE tool 130 may obtain a data model (e.g., data model 142) for the database associated with the database project. For example, a data model for a relational database includes a collection of tables, columns names, column data types, keys (i.e., table-to-table relationships) etc. Additionally, in one embodiment, the IDE tool need not maintain an active connection to a database. Instead, IDE tool 130 may cache the data model obtained at step 215, and update it either periodically or as specified by the developer. Thus, a developer may work offline or disconnected when building the database-aware application. This may be useful where the database-aware application being developed is associated with a "live" or "production" database and maintaining an open connection would be disruptive of the "production" use of the database.
At step 220, once the data model for a given database is obtained, IDE tool 130 may be configured to display elements of the data model as part of the development project. For example, IDE tool 130 may present a tree-like hierarchy beginning from a database name which when expanded lists each table present in the data model. In turn, each table may be expanded to show each of the columns present in a given table. Thus, the database connection may be used to integrate components of database structure as part of a given development project.
Further, as described in greater detail below, IDE tool 130 may be configured to generate application source code to access data records in the database. Returning to method 200 of Figure 2, at step 225, the IDE tool 130 may receive a selection of a database element. In response, IDE tool 130 may generate application code to connect with and access the selected database element. For example, IDE tool may generate a set of database statements encapsulated within API calls to access records from a relational table. Figure 4 illustrates a screenshot 400 of an exemplary IDE tool configured to generate source code for a database- aware application, according to one embodiment of the invention. Illustratively, screenshot 400 shows a tree hierarchy 405 that includes elements of a database associated with a development project. Specifically, a database named "SSURANGE" includes a number of tables. Tree hierarchy 405 includes a database table 410 named "MYDEPARTMENT." Further, information related to the columns, constraints, dependencies, indexes, and triggers is available for database table 410 in tree hierarchy 405.
In this example, screenshot 400 shows the interface of IDE tool 130 being used to select a database table and have IDE tool 130 generate application source code used to access the selected table. Specifically, a user has right-clicked on table 410, and in response, IDE tool
130 has displayed menu 415. By selecting menu item 420, a user may cause IDE tool 130 to display a dialog box like dialog box 430. In this example, dialog box 430 allows a developer to specify a name 425 for a project file to be created along with other information related to the application source code to be generated. Additionally, in one embodiment, a user may specify additional options or parameters for the application code to be generated. For example, Figure 5 illustrates a screenshot 500 of an exemplary IDE tool configured allow a developer to specify a variety of options for generating source code for a database-aware application. Illustratively, this example is based on an IDE tool configured to generate a Java® bean object that accesses a relational database table. Of course, embodiments of the invention may be adapted for use with other programming languages and types of database.
As shown, a developer has used a radio button 505 to specify whether the fields of the Java® bean to be generated are "public" or "protected" and has used checkboxes 510 to specify which SQL queries IDE tool 130 should generate and encapsulate within the Java® bean to be generated. In this case, the developer has selected a global "generate all SQL statements" option. Thus, queries are created to create, retrieve, update, and delete records from the database. Further, queries for each of these operations are created at the table, parameter, and record level of the underlying database.
The example shown in Figures 4 and 5 illustrate a developer selecting a single database table. However, when more than one table is selected, IDE tool 130 may be configured to determine relationships that may exist and propose join statements used to combine information from (or store information in) multiple database tables. IDE tool 130 may use the SQL model metadata (i.e., data model 142 of Figure 1) for this process. In one embodiment, default database queries and methods are provided as suggestions and the developer may chose to generate one of all of the statements and integrated query editing tools, allowing productive customization of these default queries.
In one embodiment, IDE tool 130 may allow developer customizations to improve code readability and/or compliance to coding standards where applicable by providing developers with the ability to specify object names (a label used within application source code) from schema names (a label used within a relational database). A mapping may be generated to link two related labels. For example, Figure 6 illustrates a screenshot 600 of an exemplary
IDE tool configured to allow a developer to specify mappings between elements of a database and program variables defined within the source code of a database-aware application, according to one embodiment of the invention. As shown, screenshot 600 includes a table 610 listing mapping between a column in a database table and an object filed name within a Java® bean object. For example, the column 615 named "ADMRDEPT" maps to the bean field name 620 of "admrdept change." In one embodiment, IDE tool may use the Java® programming language construct of an annotation to manage these links.
Returning to the method 200 of Figure 2, at step 230, once the developer has specified all of the desired parameters and options, IDE tool 130 may be configured to generate application source code to access the elements of the database specified at steps 205 and 225. For example, IDE tool 130 may generate source code to create a database connection, generate host variables mapping to columns and fields of the database, and methods that pass queries to the database over the database connection. In one embodiment, IDE tool 130 may be configured to generate source code based on a particular API, e.g., the JDBC API which allows an application written in the Java® programming language to establish a connection with a database and to transmit and receive query results from the database.
Optionally, at step 235, IDE tool 130 may also generate unit test code that the developer may use to evaluate the application code generated at step 230. That is, developers can chose to generate sample programs and unit tests that exercise all or some parts of the code generated at step 230. Thus, developers do not have to write a single line of code to effectively test portions of a database aware application, and can instead test database access by an application with one click. The IDE tool 130 may generate unit tests to test each of the create, retrieve, update, and delete methods generated by the IDE tool 130. In one embodiment, the sample unit test program achieves this by executing first test query to retrieve all rows of table from the database. A second test query is then executed to retrieve first row in order to test a retrieve by parameter/object query. The unit test then updates the row with sample test values, deletes it and inserts it back, into the database which tests the application source code generated to perform the update, delete and create operations respectively in the application. Thus, the status of the underlying database remains intact at the end of a successful test execution. Further, in one embodiment, a rollback is called at the end in case of failure.
In one embodiment, IDE tool 130 provides ease of use so that information needed to execute such a test program (e.g., connection URL, user name, password) need not be provided manually by the user. IDE tool 130 may use this information from the connection associated with the project to automatically execute the unit test program. Thus the developer is provided with a one-click mechanism to run the sample program. Further, the unit test program may be integrated with a project save mechanism such that when the unit test is regenerated or manually changed, the save action compiles and runs it. IDE tool 130 may also provide execution time and other statistical information related to program and/or database query performance.
As stated, building a database-aware application for a known highly customized and complex query is a common requirement. Accordingly, in one embodiment, IDE tool 130 may be configured to use an existing database query and generate application source code around such an existing query.
Figure 7 illustrates a method performed by an IDE tool configured to provide rapid application development beginning from an existing database query, according to one embodiment of the invention. As shown, method 700 beings at step 705 where IDE tool 130 is passed a database query. The query may be embedded within the source code of an application program being edited using IDE tool 130, or may also provided to IDE tool 130 as part of a text file, script, URL, etc. At step 710, the IDE tool may determine whether a connection to a database referenced by the query has been established. As described above, the developer may have associated a database with a given development project. If not, at step 715 the IDE tool may create a connection with the database referenced by the query received at step 705. For example, Figure 8 illustrates a screenshot 800 from an exemplary IDE tool configured to generate source code for a database-aware application, according to one embodiment of the invention. As shown, screenshot 800 includes an editing pane 815 of IDE tool 130 displaying a portion of source code from a database-aware application. In this example, the source code included a text-string 810 representing a database query. Specifically, the SQL query "select * from SSURANGE.MYDEP ARTMENT." This query retrieves all records from a "MYDEPARTMENT" table of a database named "SSURANGE." Also as shown, the user has selected a "Database Assist" item from a menu provided by IDE tool 130. Illustratively, the user has selected to create a Java® bean around query represented by text-string 810. Accordingly at step 710 of method 700, IDE tool 130 may determine whether a connection with the "SSURANGE" database has been established as part of a currently active development project. If not, then at step 715 IDE tool 130 may establish a connection with this database.
At step 720, the IDE tool may generate database access code for the database elements referenced in the query selection received at step 705. As described above, this may include generating application source code and database queries to create, retrieve, update, and delete records from an underlying database. At step 725, the code generated at step 720 may be added to the currently active development project. For example, as shown in Figure 8, menu item 805 is selected and, in response, IDE tool 130 may generate a Java® bean encapsulating both query 810, as well as other queries (e.g., a create, update, and delete query) of the database element referenced in query 810 (i.e., the "MYDEPARTMENT" table of the "SSURANGE" database).
Advantageously, as described herein, embodiments of the invention provide an integrated development environment (IDE) tool used for rapid application development of database- aware applications. Currently, to create database-aware applications, developers are typically forced to write all of the database access layer code from scratch. That is, developers have to write application source code to create a connection to a given database, compose individual queries, and encapsulate the queries within API calls for a given programming language. Further, because IDE tools lack database integration, developers have to switch around using multiple, independent tools. Embodiments of the invention address this by integrating database connectivity within an IDE. Thus, a developer may select an existing database element (e.g., a table) and the IDE tool may generate all of the application source code, API calls and database queries needed for a functioning database- aware application. Alternatively, a developer may generate application source code from an existing database query, either part of application source code or otherwise. Therefore, development cycle time may be significantly reduced as the developer. In addition to these scenarios, one of skill in the art will readily recognize that the rapid application development tool described herein may be tailored to accommodate a variety of other scenarios. Thus, embodiments of the invention provide developers with the ability to easily generate source code for a database-aware application and to easily unit test scenarios.
Still further, by integrating database functionality within an integrated development environment, embodiments of the invention may be used to test database connectivity and functionality for a database-aware application using the same IDE interface used to create the software application. Thus, rather than having to switch between tools when developing a database-aware application, the development may rely on the single, database-aware IDE.

Claims

1. A method for generating source code for a database-aware software application, comprising: receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element; generating at least one database statements to access the database element; encapsulating the at least one database statements within source code of a programming language in which the database-aware software application is being written; storing the source code within a project file associated with the database-aware software application; and displaying the source code in an editing pane of the IDE tool.
2. The method of claim 1, wherein the at least one database statements are selected from statements to create, retrieve, update, and delete records from a database.
3. The method of claim 1, wherein the database element is a database statement embedded as a text string within the source code of an application being developed using the IDE tool.
4. The method of claim 1, further comprising: receiving a set of connection parameters used to create a connection with a database; establishing a connection with the database, wherein the database contains the selected database element; and storing the connection parameters as part of a development project associated with the database-aware software application being developed.
5. The method of claim 4, further comprising: obtaining, over the established connection, a data model of the database; and displaying the data model in a window of the IDE tool.
6. The method of claim 5, wherein the data model is a relational schema.
7. The method of claim 1, further comprising, generating a unit-test application for the database aware application, wherein the unit test executes (i) a first test query to retrieve a set of records from the database, (ii) a second test query to retrieve a first record of the set of records, a (iii) a third test query to update the first record with sample test values, and (iv) a fourth test query to delete the first record, and
(v) a fifth test query to insert the first record back into the database.
8. The method of claim 1, wherein the IDE tool provides a programming environment used to develop a database-aware application, and wherein the IDE tool includes at least a graphical text editor and a compiler.
9. A computer program product comprising a computer useable storage medium having a computer readable program, wherein the computer readable program when executed on a computer causes the computer to perform an operation comprising: receiving, from a user interacting with an integrated development environment (IDE) tool, a selection of a database element; generating at least one database statements to access the database element; encapsulating the at least one database statements within source code of a programming language, wherein the user is writing the database-aware software application in the programming language; storing the source code within a project file associated with the database-aware software application; and displaying the source code in an editing pane of the IDE tool.
10. The computer useable storage medium of claim 9, wherein the at least one database statements are selected from statements to create, retrieve, update, and delete records from a database.
11. The computer useable storage medium of claim 9, wherein the database element is a database statement embedded as a text string within the source code of an application being developed using the IDE tool.
12. The computer useable storage medium of claim 9, wherein the operation further comprises: receiving a set of connection parameters used to create a connection with a database; establishing a connection with the database, wherein the database contains the selected database element; and storing the connection parameters as part of a development project associated with the database-aware software application being developed.
13. The computer useable storage medium of claim 12, wherein the operation further comprises: obtaining, over the established connection, a data model of the database; and displaying the data model in a window of the IDE tool.
14. The computer useable storage medium of claim 13, wherein the data model is a relational schema.
15. The computer useable storage medium of claim 9, wherein the operation further comprises: generating a unit-test application for the database aware application, wherein the unit test executes (i) a first test query to retrieve a set of records from the database, (ii) a second test query to retrieve a first record of the set of records, a (iii) a third test query to update the first record with sample test values, and (iv) a fourth test query to delete the first record, and (v) a fifth test query to insert the first record back into the database.
16. The computer useable storage medium of claim 9, wherein the IDE tool provides a programming environment used to develop a database-aware application, and wherein the IDE tool includes at least a graphical text editor and a compiler.
17. A system, comprising: a processor; and a memory containing an integrated development environment (IDE) tool configured to generate source code for a database-aware software application by performing an operation, comprising: receiving, from a user interacting with the tool, a selection of a database element; generating at least one database statements to access the database element; encapsulating the at least one database statements within source code of a programming language, wherein the user is writing the database-aware software application in the programming language; storing the source code within a project file associated with the database-aware software application; and displaying the source code in an editing pane of the IDE tool.
18. The system of claim 17, wherein the at least one database statements are selected from statements to create, retrieve, update, and delete records from a database that contains.
19. The system of claim 17, wherein the database element is a database statement embedded as a text string within the source code of an application being developed using the IDE tool.
20. The system of claim 17, wherein the operation further comprises: receiving a set of connection parameters used to create a connection with a database; establishing a connection with the database, wherein the database contains the selected database element; and storing the connection parameters as part of a development project associated with the database-aware software application being developed.
21. The system of claim 20, wherein the operation further comprises: obtaining, over the established connection, a data model of the database; and displaying the data model in a window of the IDE tool.
22. The system of claim 21 , wherein the data model is a relational schema.
23. The system of claim 17, wherein the operation further comprises: generating a unit-test application for the database aware application, wherein the unit test executes (i) a first test query to retrieve a set of records from the database, (ii) a second test query to retrieve a first record of the set of records, a (iii) a third test query to update the first record with sample test values, and (iv) a fourth test query to delete the first record from the set of records, and (v) a fifth test query to insert the first record back into the database.
24. The system of claim 17, wherein the IDE tool provides a programming environment used to develop a database-aware application, and wherein the IDE tool includes at least a graphical text editor and a compiler.
PCT/EP2008/053916 2007-04-27 2008-04-02 Rapid application development for database-aware applications WO2008132006A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US11/741,644 2007-04-27
US11/741,644 US8392880B2 (en) 2007-04-27 2007-04-27 Rapid application development for database-aware applications

Publications (1)

Publication Number Publication Date
WO2008132006A1 true WO2008132006A1 (en) 2008-11-06

Family

ID=39764782

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/EP2008/053916 WO2008132006A1 (en) 2007-04-27 2008-04-02 Rapid application development for database-aware applications

Country Status (2)

Country Link
US (1) US8392880B2 (en)
WO (1) WO2008132006A1 (en)

Families Citing this family (41)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9489418B2 (en) 2007-04-27 2016-11-08 International Business Machines Corporation Processing database queries embedded in application source code from within integrated development environment tool
US9047337B2 (en) * 2007-04-27 2015-06-02 International Business Machines Corporation Database connectivity and database model integration within integrated development environment tool
US8566793B2 (en) 2007-04-27 2013-10-22 International Business Machines Corporation Detecting and displaying errors in database statements within integrated development environment tool
US8375351B2 (en) * 2007-06-23 2013-02-12 International Business Machines Corporation Extensible rapid application development for disparate data sources
US8429601B2 (en) * 2007-11-29 2013-04-23 Red Hat, Inc. Code completion for object relational mapping query language (OQL) queries
US20090158242A1 (en) * 2007-12-18 2009-06-18 Kabira Technologies, Inc., Library of services to guarantee transaction processing application is fully transactional
US8954541B2 (en) * 2007-12-29 2015-02-10 Amx Llc Method, computer-readable medium, and system for discovery and registration of controlled devices associated with self-describing modules
US8099788B2 (en) * 2008-09-16 2012-01-17 Oracle International Corporation Declarative data security for a rapid application development tool component
US8359574B1 (en) * 2009-01-16 2013-01-22 Adobe Systems Incorporated Offline mode in IDE for seamless service-oriented-architecture-based application development
US9753737B2 (en) 2010-02-03 2017-09-05 Oracle International Corporation Declarative attribute security using custom properties
US8589740B2 (en) * 2010-03-02 2013-11-19 Salesforce.Com, Inc. System, method and computer program product for testing an aspect of a user interface determined from a database dedicated to the testing
US8510343B2 (en) 2010-06-11 2013-08-13 Microsoft Corporation Cogeneration of database applications and their databases
US9753699B2 (en) 2011-06-16 2017-09-05 Microsoft Technology Licensing, Llc Live browser tooling in an integrated development environment
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
US9460224B2 (en) 2011-06-16 2016-10-04 Microsoft Technology Licensing Llc. Selection mapping between fetched files and source files
US9213735B1 (en) * 2012-01-25 2015-12-15 Google Inc. Flow control in very large query result sets using a release message to confirm that a client computer is ready to receive the data associated with a data collection operation
US8806434B2 (en) * 2012-06-28 2014-08-12 International Business Machines Corporation Dynamically configuring an integrated development environment
US9052979B2 (en) * 2012-12-06 2015-06-09 International Business Machines Corporation Program code library searching and selection in a networked computing environment
CN104423983B (en) 2013-08-29 2018-06-08 国际商业机器公司 For developing, testing and the method and apparatus of application deployment
US9547553B1 (en) 2014-03-10 2017-01-17 Parallel Machines Ltd. Data resiliency in a shared memory pool
US9781027B1 (en) 2014-04-06 2017-10-03 Parallel Machines Ltd. Systems and methods to communicate with external destinations via a memory network
US9690713B1 (en) 2014-04-22 2017-06-27 Parallel Machines Ltd. Systems and methods for effectively interacting with a flash memory
US9594688B1 (en) 2014-12-09 2017-03-14 Parallel Machines Ltd. Systems and methods for executing actions using cached data
US9529622B1 (en) 2014-12-09 2016-12-27 Parallel Machines Ltd. Systems and methods for automatic generation of task-splitting code
US9781225B1 (en) 2014-12-09 2017-10-03 Parallel Machines Ltd. Systems and methods for cache streams
US9753873B1 (en) 2014-12-09 2017-09-05 Parallel Machines Ltd. Systems and methods for key-value transactions
US9639473B1 (en) 2014-12-09 2017-05-02 Parallel Machines Ltd. Utilizing a cache mechanism by copying a data set from a cache-disabled memory location to a cache-enabled memory location
US9690705B1 (en) 2014-12-09 2017-06-27 Parallel Machines Ltd. Systems and methods for processing data sets according to an instructed order
US9823904B2 (en) 2014-12-18 2017-11-21 International Business Machines Corporation Managed assertions in an integrated development environment
US9747082B2 (en) 2014-12-18 2017-08-29 International Business Machines Corporation Optimizing program performance with assertion management
US9703552B2 (en) 2014-12-18 2017-07-11 International Business Machines Corporation Assertions based on recently changed code
US9678855B2 (en) 2014-12-30 2017-06-13 International Business Machines Corporation Managing assertions while compiling and debugging source code
US20160196117A1 (en) * 2015-01-05 2016-07-07 Queue Software Inc. System and method for graphical application development
US10339151B2 (en) * 2015-02-23 2019-07-02 Red Hat, Inc. Creating federated data source connectors
US10223654B2 (en) * 2015-03-23 2019-03-05 Accenture Global Services Limited Automated, accelerated prototype generation system
CN108287717B (en) * 2017-03-13 2021-03-09 平安科技(深圳)有限公司 Jar packet generation method and terminal
US10705805B1 (en) 2017-12-12 2020-07-07 Amazon Technologies, Inc. Application authoring using web-of-sheets data model
US11586603B1 (en) 2018-05-23 2023-02-21 Amazon Technologies, Inc. Index sheets for robust spreadsheet-based applications
US11442702B2 (en) * 2018-09-22 2022-09-13 Affirm, Inc. Code completion
CN111158645B (en) 2019-12-10 2022-09-20 杭州中天微系统有限公司 System and method for providing an integrated development environment
CN113535141A (en) * 2020-04-16 2021-10-22 浙江大搜车软件技术有限公司 Database operation code generation method and device

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030004979A1 (en) * 2001-06-29 2003-01-02 John Woodring Data object generator and method of use

Family Cites Families (98)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5675801A (en) * 1994-09-30 1997-10-07 International Business Machines Corporation Object oriented system and method for generating target language code
US6097995A (en) * 1994-11-30 2000-08-01 Chemmist Limited Partnership Hazardous materials and waste reduction management system
US5701400A (en) * 1995-03-08 1997-12-23 Amado; Carlos Armando Method and apparatus for applying if-then-else rules to data sets in a relational data base and generating from the results of application of said rules a database of diagnostics linked to said data sets to aid executive analysis of financial data
US5754858A (en) * 1996-05-01 1998-05-19 Microsoft Corporation Customizable application project generation process and system
US6473768B1 (en) * 1996-11-12 2002-10-29 Computer Associates Think, Inc. System and method for modifying an executing application
DE19649727A1 (en) * 1996-11-30 1998-06-04 Beiersdorf Ag duct tape
US6006224A (en) * 1997-02-14 1999-12-21 Organicnet, Inc. Crucible query system
US6052685A (en) * 1997-08-13 2000-04-18 Mosaix, Inc. Integration of legacy database management systems with ODBC-compliant application programs
US6314559B1 (en) * 1997-10-02 2001-11-06 Barland Software Corporation Development system with methods for assisting a user with inputting source code
US6298342B1 (en) * 1998-03-16 2001-10-02 Microsoft Corporation Electronic database operations for perspective transformations on relational tables using pivot and unpivot columns
JP2002510088A (en) * 1998-03-27 2002-04-02 インフォミックス ソフトウェア, インコーポレイテッド Processing precomputed views
US6199063B1 (en) * 1998-03-27 2001-03-06 Red Brick Systems, Inc. System and method for rewriting relational database queries
US6341288B1 (en) * 1998-07-29 2002-01-22 Sybase, Inc. Database system with methodology for accessing a database from portable devices
US6834276B1 (en) * 1999-02-25 2004-12-21 Integrated Data Control, Inc. Database system and method for data acquisition and perusal
US6591272B1 (en) * 1999-02-25 2003-07-08 Tricoron Networks, Inc. Method and apparatus to make and transmit objects from a database on a server computer to a client computer
JP2000276387A (en) * 1999-03-23 2000-10-06 Toshiba Corp Method and device for metadata registration, data server device, and storage medium stored with program for metadata registration
US7539973B2 (en) * 1999-06-01 2009-05-26 Bruce Hodge Object type-declaration prefix syntax
US6446256B1 (en) * 1999-06-30 2002-09-03 Microsoft Corporation Extension of parsable structures
US6658646B1 (en) * 1999-09-29 2003-12-02 Lucent Technologies Inc. Multiple interface scripting language
US6353820B1 (en) * 1999-09-29 2002-03-05 Bull Hn Information Systems Inc. Method and system for using dynamically generated code to perform index record retrieval in certain circumstances in a relational database manager
US6496833B1 (en) * 1999-11-01 2002-12-17 Sun Microsystems, Inc. System and method for generating code for query object interfacing
US6721727B2 (en) * 1999-12-02 2004-04-13 International Business Machines Corporation XML documents stored as column data
US6507834B1 (en) * 1999-12-22 2003-01-14 Ncr Corporation Method and apparatus for parallel execution of SQL from stored procedures
AU2001243443A1 (en) * 2000-03-09 2001-09-17 The Web Access, Inc. Method and apparatus for performing a research task by interchangeably utilizinga multitude of search methodologies
US6681383B1 (en) * 2000-04-04 2004-01-20 Sosy, Inc. Automatic software production system
US7054924B1 (en) * 2000-09-29 2006-05-30 Cisco Technology, Inc. Method and apparatus for provisioning network devices using instructions in extensible markup language
US7047518B2 (en) * 2000-10-04 2006-05-16 Bea Systems, Inc. System for software application development and modeling
US6658426B1 (en) * 2000-10-31 2003-12-02 Opsware Object-oriented database abstraction and statement generation
JP2002203057A (en) * 2000-11-01 2002-07-19 Cec:Kk Added value data warehouse system
US20020178434A1 (en) * 2001-02-22 2002-11-28 Fox Gary L. Apparatus and method for automatic source code generation in a process control environment
US7110936B2 (en) * 2001-02-23 2006-09-19 Complementsoft Llc System and method for generating and maintaining software code
US7222231B2 (en) 2001-04-19 2007-05-22 Hewlett-Packard Development Company, L.P. Data security for distributed file systems
US6799184B2 (en) * 2001-06-21 2004-09-28 Sybase, Inc. Relational database system providing XML query support
EP1410204B1 (en) * 2001-06-22 2016-11-09 Wonderware Corporation Supervisory process control and manufacturing information system application having an extensible component model
EP1410195A4 (en) * 2001-06-22 2008-03-19 Wonderware Corp A customizable system for creating supervisory process control and manufacturing information applications
US6799718B2 (en) * 2001-07-10 2004-10-05 Borland Software Corp. Development assistance for mixed-language sources
US7752326B2 (en) * 2001-08-20 2010-07-06 Masterobjects, Inc. System and method for utilizing asynchronous client server communication objects
US6877000B2 (en) * 2001-08-22 2005-04-05 International Business Machines Corporation Tool for converting SQL queries into portable ODBC
US20030074358A1 (en) * 2001-09-24 2003-04-17 Siamak Sarbaz Integration, management and processing of network data from disparate sources
US7107578B1 (en) * 2001-09-24 2006-09-12 Oracle International Corporation Techniques for debugging computer programs involving multiple programming languages
US7110991B2 (en) * 2002-03-07 2006-09-19 International Business Machines Corporation IDE integration with JDBC
US6873995B2 (en) * 2002-04-23 2005-03-29 International Business Machines Corporation Method, system, and program product for transaction management in a distributed content management application
US7392504B2 (en) * 2002-06-06 2008-06-24 International Business Machines Corporation System and method for automated source code generation
CA2391733A1 (en) * 2002-06-26 2003-12-26 Ibm Canada Limited-Ibm Canada Limitee Framework to access a remote system from an integrated development environment
US7240340B2 (en) * 2002-08-12 2007-07-03 Microsoft Corporation System and method for browse information parsing without compilation
US20040044687A1 (en) * 2002-08-30 2004-03-04 Thomas Vachuska Apparatus and method using pre-described patterns and reflection to generate a database schema
US20040064788A1 (en) * 2002-09-30 2004-04-01 International Business Machines Corporation System and method for generating source code for an XML application
US7941553B2 (en) * 2002-10-18 2011-05-10 International Business Machines Corporation Method and device for streaming a media file over a distributed information system
US7392246B2 (en) * 2003-02-14 2008-06-24 International Business Machines Corporation Method for implementing access control for queries to a content management system
US8032860B2 (en) * 2003-02-26 2011-10-04 Oracle International Corporation Methods for type-independent source code editing
US7076772B2 (en) * 2003-02-26 2006-07-11 Bea Systems, Inc. System and method for multi-language extensible compiler framework
US7650592B2 (en) * 2003-03-01 2010-01-19 Bea Systems, Inc. Systems and methods for multi-view debugging environment
US20040267690A1 (en) * 2003-06-26 2004-12-30 International Business Machines Corporation Integrated development environment with context sensitive database connectivity assistance
WO2005008534A2 (en) * 2003-07-11 2005-01-27 Computer Associates Think, Inc. System and method for generating sql using templates
WO2005008358A2 (en) * 2003-07-22 2005-01-27 Kinor Technologies Inc. Information access using ontologies
US7401104B2 (en) * 2003-08-21 2008-07-15 Microsoft Corporation Systems and methods for synchronizing computer systems through an intermediary file system share or device
US7774333B2 (en) * 2003-08-21 2010-08-10 Idia Inc. System and method for associating queries and documents with contextual advertisements
US7421680B2 (en) * 2003-09-22 2008-09-02 Microsoft Corporation Persisted specifications of method pre-and post-conditions for static checking
US7809808B2 (en) * 2003-10-22 2010-10-05 International Business Machines Corporation Method, system, and program product for analyzing a scalability of an application server
US7213224B2 (en) * 2003-12-02 2007-05-01 Lsi Logic Corporation Customizable development and demonstration platform for structured ASICs
US7406464B2 (en) * 2003-12-08 2008-07-29 Ebay Inc. Custom caching
US20050160104A1 (en) * 2004-01-20 2005-07-21 Datasource, Inc. System and method for generating and deploying a software application
US8073836B2 (en) * 2004-03-01 2011-12-06 Epicor Software Corporation System for viewing databases
US7228497B2 (en) * 2004-03-19 2007-06-05 Microsoft Corporation System and method for automated generation of XML transforms
US7440935B2 (en) * 2004-05-05 2008-10-21 International Business Machines Corporation Method and system for query directives and access plan hints
US7313575B2 (en) * 2004-06-14 2007-12-25 Hewlett-Packard Development Company, L.P. Data services handler
US7937401B2 (en) * 2004-07-09 2011-05-03 Microsoft Corporation Multidimensional database query extension systems and methods
US7844570B2 (en) * 2004-07-09 2010-11-30 Microsoft Corporation Database generation systems and methods
US20060041864A1 (en) * 2004-08-19 2006-02-23 International Business Machines Corporation Error estimation and tracking tool for testing of code
US7801882B2 (en) 2004-10-01 2010-09-21 Microsoft Corporation Optimized constraint and index maintenance for non updating updates
US7711740B2 (en) * 2004-10-19 2010-05-04 Microsoft Corporation Data access layer design and code generation
US20060112067A1 (en) * 2004-11-24 2006-05-25 Morris Robert P Interactive system for collecting metadata
US7792851B2 (en) * 2004-12-02 2010-09-07 International Business Machines Corporation Mechanism for defining queries in terms of data objects
US7788085B2 (en) * 2004-12-17 2010-08-31 Xerox Corporation Smart string replacement
US7478367B2 (en) * 2005-01-11 2009-01-13 International Business Machines Corporation Dynamic source code analyzer
US7904411B2 (en) * 2005-02-04 2011-03-08 Accenture Global Services Limited Knowledge discovery tool relationship generation
US7681176B2 (en) * 2005-03-04 2010-03-16 Microsoft Corporation Generating a graphical designer application for developing graphical models
CN101238456A (en) * 2005-04-18 2008-08-06 捷讯研究有限公司 System and method for enabling assisted visual development of workflow for application tasks
US7552429B2 (en) * 2005-04-21 2009-06-23 International Business Machines Corporation Integrated development environment for managing software licensing restrictions
US7490622B2 (en) * 2005-06-10 2009-02-17 Smart Parts, Inc. Rotatable quick exhaust valve
US8141036B2 (en) * 2005-07-07 2012-03-20 Oracle International Corporation Customized annotation editing
US20070044066A1 (en) * 2005-08-19 2007-02-22 Microsoft Corporation Embedded multi-language programming
US20070050348A1 (en) * 2005-08-30 2007-03-01 Microsoft Corporation Programmatic query assistance
US7797303B2 (en) 2006-02-15 2010-09-14 Xerox Corporation Natural language processing for developing queries
US8095823B2 (en) 2006-03-31 2012-01-10 British Telecommunications Public Limited Company Server computer component
US7689614B2 (en) * 2006-05-22 2010-03-30 Mcafee, Inc. Query generation for a capture system
US7685194B2 (en) * 2006-08-31 2010-03-23 Microsoft Corporation Fine-grained access control in a database by preventing information leakage and removing redundancy
US7516128B2 (en) * 2006-11-14 2009-04-07 International Business Machines Corporation Method for cleansing sequence-based data at query time
US20080162445A1 (en) * 2006-12-29 2008-07-03 Ahmad Ghazal Determining satisfiability and transitive closure of a where clause
US20080172360A1 (en) * 2007-01-17 2008-07-17 Lipyeow Lim Querying data and an associated ontology in a database management system
US20080189240A1 (en) * 2007-02-05 2008-08-07 Mullins Ward R System, method and software for creating or maintaining local or distributed mapping and transparent persistence of complex data objects and their data relationships
US20080222129A1 (en) * 2007-03-05 2008-09-11 Komatsu Jeffrey G Inheritance of attribute values in relational database queries
US8566793B2 (en) * 2007-04-27 2013-10-22 International Business Machines Corporation Detecting and displaying errors in database statements within integrated development environment tool
US9489418B2 (en) * 2007-04-27 2016-11-08 International Business Machines Corporation Processing database queries embedded in application source code from within integrated development environment tool
US9047337B2 (en) * 2007-04-27 2015-06-02 International Business Machines Corporation Database connectivity and database model integration within integrated development environment tool
US7792836B2 (en) * 2007-06-17 2010-09-07 Global Telegenetics, Inc. Portals and doors for the semantic web and grid
US8090735B2 (en) * 2007-06-22 2012-01-03 International Business Machines Corporation Statement generation using statement patterns
US8375351B2 (en) * 2007-06-23 2013-02-12 International Business Machines Corporation Extensible rapid application development for disparate data sources

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030004979A1 (en) * 2001-06-29 2003-01-02 John Woodring Data object generator and method of use

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
AZADEH AHADIAN: "Understanding pureQuery, Part 1: pureQuery: IBM's new paradigm for writing Java database applications. Save time, write little code, run everywhere", INTERNET CITATION, 14 December 2007 (2007-12-14), pages 1 - 35, XP007905766, Retrieved from the Internet <URL:http://www.ibm.com/developerworks/db2/library/techarticle/dm-0708ahadian> [retrieved on 20050925] *
B KURNIAWAN: "Struts Design and Programming: A Tutorial", 1 April 2005, XP002497756 *
DB SOLO LLC: "DB Solo Documentation", 5 February 2007 (2007-02-05), XP007905789, Retrieved from the Internet <URL:http://web.archive.org/web/20070203195407/dbsolo.com/help/DBSolo.html> [retrieved on 20080926] *
J LIBERTY: "Visual C# 2005: A Developer's Notebook", April 2005, O'REILLY, XP002497755 *

Also Published As

Publication number Publication date
US8392880B2 (en) 2013-03-05
US20080270980A1 (en) 2008-10-30

Similar Documents

Publication Publication Date Title
US8392880B2 (en) Rapid application development for database-aware applications
US8276117B2 (en) Displaying and refactoring programs that include database statements
US9489418B2 (en) Processing database queries embedded in application source code from within integrated development environment tool
US8566793B2 (en) Detecting and displaying errors in database statements within integrated development environment tool
US9047337B2 (en) Database connectivity and database model integration within integrated development environment tool
US8739116B2 (en) Development environment configured to generate application source code from database objects
US8667456B1 (en) Cloud-based indexing for integrated development environments
US9207952B2 (en) Semantic mapping of objects in a user interface automation framework
US7793256B2 (en) Methods and systems for supporting and deploying distributed computing components
US9916134B2 (en) Methods and systems for accessing distributed computing components through the internet
US8473915B2 (en) Coverage analysis tool for testing database-aware software applications
US8433687B1 (en) Off-line indexing for client-based software development tools
MacDonald et al. Pro ASP. NET 4 in VB 2010
US7490098B2 (en) Apparatus, system, and method for processing hierarchical data in disparate data repositories
US10691584B2 (en) Behavior driven development integration with test tool
US20120110030A1 (en) Software database system and process of building and operating the same
US20150261507A1 (en) Validating sql queries in a report
US20080270982A1 (en) Method for automating variables in end-user programming system
CN111694738B (en) Method for generating SQL test script
Elliott et al. Harnessing Hibernate: Step-by-step Guide to Java Persistence
US20200257507A1 (en) Integration of workflow and logical data objects using visual programming
Natarajan et al. Pro T-SQL Programmer's Guide
US8631393B2 (en) Custom database system and method of building and operating the same
WO2008014387A2 (en) Custom database system and method of building and operating the same
CN115794858A (en) Query statement processing method, device, equipment and storage medium

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 08735676

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 08735676

Country of ref document: EP

Kind code of ref document: A1