Which language is used to obtain data from database in application program?

Database skills are among the most wanted skillset in aprogramming jobas it helps in storing the data to make it easy for users to access it whenever required. Database Administrators work on a chunk of data that can be optimised easily using the rightprogramming language.

The Database Managers who want to grow and expand their IT knowledge base can mend with the data management skills and learn programming languages. To give you a better understanding of the top programming languages that Database Administrators can learn, here is a list to go through.

#1. Structured Query Language (SQL)

It is a standard programming language that is famous fordatabase developmentamong developers. SQL is a popular database server that is known for its scalable and robustness, queries, mixing expressions, and statements. The drawback of SQL is its design aspect and its compatibility with other a few software. But it can be used for small and large datasets that make it a great choice. However, the portability can make it a bit difficult for a newDatabase Administratorto grasp SQL concepts.

#2. PHP
PHP is a well-known platform that is used to develop interactive and complex websites. It also has a strong connection to databases. Developers can easily use PHP to develop a database using it as a server-side scripting language to establish strong connectivity for writing, storing, and retrieving data efficiently. One of the top content management systems - WordPress - is also developed using PHP that streamlines the web development with databases.

#3. Python
Python is a general-purpose programming language that is used for several reasons including database management, system management, and integration with the help of plug-in functionalities and frameworks. It can help in displaying data, perform data analysis, storage, increasing support, eliminating development time, and increasing support.

#4. R
If the objective of thedatabase programminglanguage is to data analysis, statistical software, data mining, and statistical computing, then R is the right platform for you. This platform can work with complex and datasets while working on computational requirements and handle the performance involving mathematical equations that can display, analyze, and store information.

#5. C#
The programming language that is famous for a long time is C-suite that is efficient and flexible for development and runs efficiently on system hardware. It is an ideal platform for cross-platform support and can also be used for the relational database to maximize resources of system and server hosting of data. The native apps can help in high-performance for the intricate nature of C++, C, and C#.

The database is a vital part of the development process and hence the knowledge of any or all of the above-mentioned programming languages is essential for database administrators, data scientists, data analysts, etc. These are the major programming languages that one can use to develop and manage the database and increase their abilities to enhance the chances of employability in the future.

Data definition languages, which are used to declare schemas (perhaps including application-specific integrity constraints)

2.

Data manipulation languages, which are used to retrieve and manipulate the stored data

Data manipulation languages can be further categorized as follows:

1.

Query languages, which most often are high-level, declarative, and computationally incomplete (i.e., not capable of expressing certain computations, typically due to the lack of support for updates or for recursion or iteration)

2.

Procedural languages, which most often are low-level, imperative, and computationally complete

Besides these, most DBMSs provide interfacing mechanisms with which developers can implement applications in a general-purpose language (referred to in this context as a host language) and use the latter to invoke whatever operations are supported over the stored data (because they are part of the behavior of either the data types made available by the data model or the application types declared in the application schema).

III.A Relational Database Languages

SQL is the ISO/ANSI standard for a relational database language. SQL is both a data definition and a data manipulation language. It is also both a query language and capable of expressing updates. However, SQL is not computationally complete, since it offers no support for either recursion or iteration. As a consequence, when it comes to the development of applications, SQL is often embedded in a host language, either one that is specific to the DBMS being used or a general purpose language for which a query language interface is provided.

Figure 6 shows how the schema illustrated in Fig. 1 can be declared in SQL. Notice that SQL includes constructs to declare integrity constraints (e.g., a referential integrity on from DNA_sequence to organism) and even an action to be performed if it is violated (e.g., cascading deletions, by deleting every referring tuple when a referenced tuple is deleted).

Which language is used to obtain data from database in application program?

FIGURE 6. SQL declarations for the schemas in Fig. 1.

SQL can also express insertions, deletions and updates, as indicated in Fig. 7. Note in Fig. 7 that on insertion it is possible to omit null values by listing only the attributes for which values are being supplied. Note also that the order of insertion in Fig. 7 matters, since referential integrity constraints would otherwise be violated. Finally, note that, because of cascading deletions, the final statement will also delete all tuples in DNA_sequence that refer to the primary key of the tuple being explicitly deleted in organism.

Which language is used to obtain data from database in application program?

FIGURE 7. Using SQL to effect state transitions in the relation instances from Fig. 2.

After the operations in Fig. 7 the state depicted in Fig. 2 will have changed to that shown in Fig. 8.

Which language is used to obtain data from database in application program?

FIGURE 8. Updated relation instances after the commands in Fig. 7.

As a relational query language, SQL always returns results that are themselves relation instances. Thus, the basic constructs in SQL cooperate in specifying aspects of the schema as well as the instantiation of a query result. Roughly, the SELECT clause specifies the names of attributes to appear in the result, the FROM clause specifies the names of relations contributing data to the result, and the WHERE clause specifies, in terms of the relations (and their attributes) mentioned in the FROM clause, the conditions which each tuple in the result must satisfy. SQL queries tend to be structured around this combination of SELECT, FROM and WHERE clauses. Figure 9 shows example SQL queries.

Which language is used to obtain data from database in application program?

FIGURE 9. Using SQL to query the database state in Fig. 9.

QueryRQ1 in Fig. 9 returns a unary table, each tuple of which records the organism_id of organisms that share the common_name of “white_clover.” Query RQ2 returns a binary table relating each common_name found in the organism table with the protein_ids produced by their identified genes. Figure 10 shows the relations instances returned by RQ1 and RQ2.

Which language is used to obtain data from database in application program?

FIGURE 10. Results of the SQL queries in Fig. 9.

SQL also supports aggregations (e.g., COUNT and AVG, which, respectively, count the number of tuples in a result and compute the average value of a numeric attribute in the result), groupings, and sorting.

Embedding SQL into a host language is another approach to retrieving and manipulating data from relational databases. Vendors typically provide a host language for SQL of which the fragment in Fig. 11 is an illustration. The fragment in Fig. 11 uses a CURSOR construct to scan the organism relation instance for organisms with no common name. When one is found, rather than leaving the value unassigned, the program uses the UPDATE construct to set the common_name attribute to the string None.

Which language is used to obtain data from database in application program?

FIGURE 11. Embedding SQL in a host language to effect state transitions.

SQL is legally defined by ISO/ANSI standards which are available from those organizations. For comprehensive treatment, a good source is Melton and Simon, 1993. A detailed treatment of the relational algebra and calculi which underpin SQL can be found in Abiteboul et al. (1995).

III.B Object-Oriented Database Languages

In the object-oriented case, the separation between the languages used for data definition, querying and procedural manipulation is more explicit than in the relational case. This is because in object-oriented databases, the syntactic style of SQL is circumscribed largely to the query part of the data manipulation language.

Also, rather than make use of vendor-specific host languages, object-oriented DBMSs either provide interfaces to general-purpose languages or else the DBMS itself supports a persistent programming language strategy to application development (i.e., one in which a distinction between the data space of the program and the database is deliberately not made, which leads to applications that need not explicitly intervene to transfer data from persistent to transient store and back again).

The de facto standard for object-oriented databases is the proposal by the ODMG consortium of vendors. The ODMG standard languages are ODL, for definition, and OQL (which extends the query part of SQL), for querying. The standard also defines interfaces for a few widely used general-purpose languages. Figure 4 could be declared in ODL as shown in Fig. 12.

Which language is used to obtain data from database in application program?

FIGURE 12. ODL to specify the gene class in Fig. 4.

Note how ODL allows inverse relationships to be named, as a consequence of which referential integrity is enforced in both directions.

Two OQL queries over the gene class in Fig. 12 are given in Fig. 13. Query OQ1 returns a set of complex values, i.e., name-cited pairs, where the first element is the standard_name of an instance of the gene class and the second is the list of strings stored as the value of the citation attribute for that instance. Query OQ2 returns the common_name of organisms associated with genes that have alleles. Note the use of the COUNT aggregation function over a collection value. Note, finally, the denotation g.organism_id.common_name (known as a path expression). Path expressions allow a navigational style of access.

Which language is used to obtain data from database in application program?

FIGURE 13. Using OQL to query the gene class in Fig. 12.

For ODMG-compliant DBMSs, the authoritative reference on ODL and OQL is (Cattell et al., 2000). A more formal treatment of some of the issues arising in object-oriented languages can be found inAbiteboul et al. (1995).

III.C Object-Relational Database Languages

The proposed standard for object-relational database languages is SQL-99. Figure 14 shows how Fig. 4 could be specified in SQL-99. Note the use of ROW TYPE to specify a complex domain, the use of REF to denote tuple identifiers and the use of type constructors such as SET and LIST. Note also that, unlike ODL (cf. Fig. 12), in SQL-99 inverse relationships are not declared. Note, finally, how gene is modeled as including operations, as indicated by the keyword FUNCTION introducing the behavioral part of the specification of gene.

Which language is used to obtain data from database in application program?

FIGURE 14. SQL-99 to specify the gene entity in Fig. 3.

Two SQL-99 queries over the gene type in Fig. 14 are given in Fig. 15. Query ORQ1 returns a binary table relating the standard_name of each gene with the common_name of organisms where the gene is found. Query ORQ2 returns the common_name of organisms associated with genes that have alleles. Note that in SQL-99 path expressions use the symbol -> to dereference identifiers and (not shown in Fig. 15) the symbol ‘..’ to denote attributes in row types.

Which language is used to obtain data from database in application program?

FIGURE 15. Using SQL-99 to query the gene type in Fig. 14.

SQL-99 is legally defined by ISO/ANSI standards which are available from those organizations.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B0122274105008449

Temporal Data Types in SQL

Joe Celko, in Joe Celko's SQL for Smarties (Fifth Edition), 2015

12.9.1 Report Period Tables

Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses, so there is no way to get disagreements in the DML.

The report period table gives a name to a range of dates that is common to the entire enterprise.

CREATE TABLE Something_Report_Periods

(something_report_name CHAR(10) NOT NULL PRIMARY KEY

 CHECK (something_report_name LIKE < pattern >),

 something_report_start_date DATE NOT NULL,

 something_report_end_date DATE NOT NULL,

CONSTRAINT date_ordering

CHECK (something_report_start_date <= something_report_end_date),

etc);

These report periods can overlap or have gaps. Avoid period names that are language dependent; they will have trouble porting. If possible the periods name should sort in temporal order. Again, I like the MySQL convention of using double zeroes for months and years, That is, ‘yyyy-mm-00’ for a month within a year and ‘yyyy-00-00’ for the whole year. The advantages are that it will sort with the ISO-8601 date format and will go to the top of each year and month within the year.

Overlapping periods are useful for reporting things like sales promotions. You can quickly see if the overlap between your “Bikini Madness Week” and “Three Day Suntan Lotion Promotion” helped increase total sales.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780128007617000127

Temporal Queries

Joe Celko, in Joe Celko's SQL for Smarties (Fifth Edition), 2015

35.6.2.1 Report Period Table

Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses, so there is no way to get disagreements in the DML.

The report period table gives a name to a range of dates that is common to the entire enterprise.

CREATE TABLE Something_Report_Periods

(something_report_name CHAR(10) NOT NULL PRIMARY KEY

CHECK (something_report_name LIKE < pattern >),

something_report_start_date DATE NOT NULL,

something_report_end_date DATE NOT NULL,

 CONSTRAINT date_ordering

CHECK (something_report_start_date <= something_report_end_date),

etc);

These report periods can overlap or have gaps. Giving a period a name is harder than you might think. I like the MySQL convention of using double zeroes for months and years, That is ‘yyyy-mm-00’ for a month within a year and ‘yyyy-00-00’ for the whole year. The advantages are that it will sort with the ISO-8601 data format required by Standard SQL and it is language independent. The pattern for validation is ‘[12][0-9][0-9][0-9]-00-00’ and ‘[12][0-9][0-9][0-9]-[01][0-9]-00’.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780128007617000358

Domain 8

Eric Conrad, in Eleventh Hour CISSP, 2011

Top five toughest questions

1.

Which type of database language is used to create, modify, and/or delete tables?

A.

Data Definition Language (DDL)

B.

Data Manipulation Language (DML)

C.

Database Management System (DBMS)

D.

Structured Query Language (SQL)

2.

A database contains an entry with an empty primary key. What database concept has been violated?

A.

Entity Integrity

B.

Normalization

C.

Referential Integrity

D.

Semantic Integrity

3.

Which vulnerability allows a third party to redirect static content within the security context of a trusted site?

A.

Cross-Site Request Forgery (CSRF)

B.

Cross-Site Scripting (XSS)

C.

PHP Remote File Inclusion (RFI)

D.

SQL Injection

4.

Which language allows CORBA (Common Object Request Broker Architecture) objects to communicate via a message interface?

A.

Distributed Component Object Model (DCOM)

B.

Interface Definition Language (IDL)

C.

Object Linking and Embedding (OLE)

D.

Object Management Guidelines (OMG)

5.

Which database high-availability option allows multiple clients to access multiple database servers simultaneously?

A.

Database commit

B.

Database journal

C.

Replicated database

D.

Shadow database

Answers

1.

Correct Answer and Explanation: A. Answer A is correct; Data Definition Language (DDL) is used to create, modify, and delete tables.

Incorrect Answers and Explanations: B, C, and D. Answers B, C, and D are incorrect. Data Manipulation Language (DML) is used to create, modify, and delete tables. Data Manipulation Language (DML) is used to query and update data stored in the tables. Database Management System (DBMS) manages the database system and provides security features. Structured Query Language (SQL) is a database query language that includes both DDL and DML. DDL is more specific than SQL, so it is a better answer for this question.

2.

Correct Answer and Explanation: A. Answer A is correct; entity integrity means that each tuple has a unique primary key that is not null.

Incorrect Answers and Explanations: B, C, and D. Answers B, C, and D are incorrect. Normalization makes the data in a database table logically concise, organized, and consistent. Referential integrity means that every foreign key in a secondary table matches a primary key in the parent table: If this is not true, referential integrity has been broken. Semantic integrity means that each attribute (column) value is consistent with the attribute data type.

3.

Correct Answer and Explanation: A. Answer A is correct; Cross-Site Request Forgery (CSRF) allows a third party to redirect static content within the security context of a trusted site.

Incorrect Answers and Explanations: B, C, and D. Answers B, C, and D are incorrect. Cross-Site Scripting (XSS) is third-party execution of web scripting languages such as Javascript within the security context of a trusted site. XSS is similar to CSRF; the difference is that XSS uses active code. PHP Remote File Inclusion (RFI) alters normal PHP variables to reference remote content, which can lead to execution of malicious PHP code. SQL Injection manipulates a back-end SQL server via a front-end web server.

4.

Correct Answer and Explanation: B. Answer B is correct; Interface Definition Language (IDL) allows CORBA objects to communicate via a message interface.

Incorrect Answers and Explanations: A, C, and D. Answers A, C, and D are incorrect. Distributed Component Object Model (DCOM) is a Microsoft object broker that locates objects over a network. Object Linking and Embedding (OLE) is a part of DCOM that links documents to other documents. Object Management Guidelines is a distracter answer, playing off the term OMG: Object Management Group (OMG) developed CORBA.

5.

Correct Answer and Explanation: C. Answer C is correct; database replication mirrors a live database, allowing simultaneous reads and writes by clients to multiple replicated databases.

Incorrect Answers and Explanations: A, B, and D. Answers A, B, and D are incorrect. DBMSs may attempt to commit updates—that is, make pending changes permanent. A database journal is a log of all database transactions. A shadow database is similar to a replicated database, with one key difference: A shadow database mirrors all changes made to a primary database, but clients do not access the shadow.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9781597495660000084

Real-Time Analytics

Z. Milosevic, ... F.A. Rabhi, in Big Data, 2016

2.6.1 Query-Based EPSs

Query-based EPSs typically support an EPL extended from the relational database language SQL to query event data. The queries expressed in a query-based EPL are often referred to as continuous/continual queries [27]. In contrast to traditional non-persisting queries that work on persistent data, continuous queries are stored persistently in the database and applied to event streams. The processing paradigm in such systems is:

Define queries in an SQL-like language

Process queries

Results of the processing step are only selectively stored in the database

In order to handle unbounded input streams, a common feature among these query-based languages is “the extensive operations on sliding windows” [28]. Sliding windows are used to divide the event stream into segments so that these segments can then be manipulated and analyzed without the system running into unlimited wait time and memory usage. There are different types of sliding windows [29]:

Time-driven model: The window is reevaluated only at the end of each time step. CQL [30] adopts this model.

Tuple-driven model: The window is reevaluated every time a new tuple arrives. StreamSQL [31] adopts this model.

Since CQL and StreamSQL adopt different sliding window models, not all queries that can be expressed in CQL can also be expressed in StreamSQL, and vice versa [29]. In any one particular query-based language, it is important to stick to the consistent semantics so that all implementations using this EPL work in a consistent manner and generate expected results.

Query-based EPLs are considered as good at defining patterns of “low-level aggregation views according to event types defined as nested queries” [32]. However, any of these languages have shortcomings when expressing event pattern types. For example, CQL does not have the ability of expressing windows with a variable slide parameter [29]. Additionally, when detecting occurrences of the same event pattern type, different query-based EPLs may generate different results, but the user does not have the power to control which result should be generated [33].

A more recent solution is Azure Stream Analytics from Microsoft, which supports CEP over streaming data in the cloud [34]. CEP processing is realized through an SQL-like language to specify streaming analytics tasks, such as correlation, aggregation, sliding windows and calculations over those windows, comparing current conditions to historical values, and so on [34].

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780128053942000027

Language cognition

Zhongzhi Shi, in Intelligence Science, 2021

6.7.4.3 Case-based machine translation

Case-based machine translation was first proposed in the 1990s by Japanese scholars. This method is based on case-based reasoning (CBR). In CBR, the problem or situation is referred to as the target case, while the memory of the problem or situation is called the source case. In simple terms, CBR is a solving strategy based on the hint of the target case to acquire the source case and solving the problem under the guidance of the source case. Therefore, the general idea of translation is as follows: A corpus consisting of a bilingual translation unit is created in advance. Then the search unit chooses a searching and matching algorithm, and the optimal matching unit is searched in the corpus.

If we want to translate the source language text “S,” the translation examples of S that need to be found in the bilingual corpus is similar to S. According to S', T is the translation case. And the translation result T is finally acquired. In general, the case-based machine translation system includes several steps, such as the pattern retrieval of candidate instances, sentence similarity computation, bilingual word alignment, and analogical translation. How to find the most similar translation examples from the source language text is the key problem of the case-based translation method. So far, researchers have not found a simple way to calculate the similarity between sentences. In addition, the evaluation of the sentence similarity problem still requires a lot of human engineering, language psychology, and other knowledge.

Case-based machine translation method is almost not needed to analyze and understand the source language. It only needs a relatively large sentence-aligned bilingual corpus, so it is easy to get the knowledge acquisition. If there are similar sentences in the corpus, the case-based method can get a good translation, and the more similar the sentences are, the better the translation effect is, and the higher the quality of the translation will be.

There is one more advantage for the case-based translation method. The knowledge representation of an instance pattern can be expressed in a concise and convenient way to express a large amount of human language.

However, the shortcomings of case-based machine translation are obvious. When a similar sentence is not found, the translation declares a failure. This requires that the corpus must cover a wide range of linguistic phenomena, for example, like the PanEBMT system of Carnegie Mellon University [25], which contains about 2,800,000 English and French bilingual sentence pairs. Although researchers use the PanEBMT system in a number of ways, for open text test, the coverage of translation of PanEBMT is only 70%. In addition, it is not easy to establish a high-quality, large bilingual sentence-aligned corpus, especially for minority languages.

Trados is desktop computer auxiliary translation software, which is based on a translation memory (TM) base and term base, which provides a complete set of tools for creating, editing, and checking high-quality translation [26]. The company of Trados GmbH was founded in 1984 by Hummel and Knyphausen in Germany. The company began to develop translation software in the late 1980s and released the first batch of Windows software in the early 1990s; they developed MultiTerm and Workbench Translators in 1992 and 1994, respectively. In 1997, thanks to Microsoft using Trados software for localization translation, the company became the desktop TM software industry leader in the late 1990s. Trados was acquired by SDL in June 2005.

SDL Trados Studio 2014 can work in the team to collect their translation in order to establish a language database (TM). In this database, the software is determined to be reused. When translators translate new content and meet with the translated sentences that are similar to or in the same sentence, the software automatically puts forward suggestions of reusable content. The features of SDL Trados Studio are as follows:

1.

Based on the principle of TM, it is currently the world’s most famous professional translation software and has become the standard of professional translation.

2.

It supports 57 languages two-way translation.

3.

It greatly improves work efficiency, reduces costs, improves quality.

4.

Its background is a powerful neural network database to ensure the security of the system and information.

5.

It supports all popular document formats; users do not need to do layout (DOC, RTF, HTML, SGML, XML, FrameMaker, RC, AutoCAD DXF, etc.).

6.

It improves the auxiliary functions, such as time, measurement, form, automatic replacement, and other fixed format, helping customers greatly improve work efficiency.

7.

The interface is clear. Both the original and the translation are clearly displayed on both sides. It is able to customize the environment in a variety of ways: Keyboard shortcuts, layout, color, and text size can be customized, so as to maximize the comfort and work efficiency.

8.

It provides the most extensive file format support, from the Office2013 Microsoft file to the complex XML file.

The study of cased-based machine translation, one of the main aspects of research, is to focus on how to improve the translation of the translation system under the relatively small number of the cases or on how to reduce the size of the case model to maintain the effectiveness of the translation. To achieve this goal, we need to extract as much linguistic knowledge as possible from the database of case patterns, including syntax, lexical knowledge, and semantic knowledge.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780323853804000063

Embedded SQL

Jan L. Harrington, in SQL Clearly Explained (Third Edition), 2010

The Embedded SQL Environment

SQL statements can be embedded in a wide variety of host languages. Some are general-purpose programming languages such as COBOL, C++, or Java. Others are special-purpose database programming languages such as the PowerScript language used by PowerBuilder or Oracle's SQL/Plus, which contains the SQL language elements discussed in Chapter 14 as well as Oracle-specific extensions.

The way in which you handle source code depends on the type of host language you are using: Special-purpose database languages such as PowerScript or extensions of the SQL language (for example, SQL/Plus) need no special processing. Their language translators recognize embedded SQL statements and know what to do with them. However, general-purpose language compilers are not written to recognize syntax that isn't part of the original language. When a COBOL1 or C++ compiler encounters a SQL statement, it generates an error.

The solution to the problem has several aspects:

Support for SQL statements is provided by a set of program library modules. The input parameters to the modules represent the portions of a SQL statement that are set by the programmer.

SQL statements embedded in a host language program are translated by a precompiler into calls to routines in the SQL library.

The host language compiler can access the calls to library routines and therefore can compile the output produced by the precompiler.

During the linking phase of program preparation, the library routines used to support SQL are linked to the executable file along with any other library used by the program.

To make it easier for the precompiler to recognize SQL statements, each one is preceded by EXEC SQL. The way in which you terminate the statement varies from one language to another. The typical terminators are summarized in Table 15-1. For the examples in this book, we will use a semicolon as an embedded SQL statement terminator.

Table 15-1. Embedded SQL statement terminators

LanguageTerminatorAdaSemicolonC, C++SemicolonCOBOLEND-EXECFortranNoneMUMPSClose parenthesisPascalSemicolonPL/1Semicolon

Java and JDBC

Java is an unusual language, in that it is pseudo-compiled. (Language tokens are converted to machine code at runtime by the Java virtual machine.) It also accesses databases in its own way: using a library of routines (an API) known as Java Database Connectivity, or JDBC. A JDBC driver provides the interface between the JDBC library and the specific DBMS being used.

JDBC does not require that Java programs be precompiled. Instead, SQL commands are created as strings that are passed as parameters to functions in the JDBC library. The process for interacting with a database using JDBC goes something like this:

1.

Create a connection to the database.

2.

Use the object returned in Step 1 to create an object for a SQL statement.

3.

Store each SQL command that will be used in a string variable.

4.

Use the object returned in Step 2 to execute one or more SQL statements.

5.

Close the statement object.

6.

Close the database connection object.

If you will be using Java to write database applications, then you will probably want to investigate JDBC. Many books have been written about using it with a variety of DBMSs.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780123756978500157

Application Security

Jason Andress, in The Basics of Information Security (Second Edition), 2014

Arbitrary code execution

We can find a number of areas for security flaws in the languages we use to talk to databases. Generally, these are concentrated on SQL, as it is the most common database language in use. In the default SQL language, a number of built-in elements are possible security risks, some of which we can control access to and some of which we cannot.

In these language elements, we may find a number of issues related to bugs in the software we are using, or issues spawned by not using secure coding practices, that might allow us to execute arbitrary code within the application. For example, a flaw allowing us to conduct a buffer overflow, as we discussed earlier in this chapter, might enable us to insert attack code into the memory space used by the database or the operating system, and compromise either or both of them.

Our best defenses against such attacks are twofold. From the consumer side, we should stay current on the version and patch levels for our software. From the vendor side, we should mandate secure coding practices, in all cases, in order to eliminate the vulnerabilities in the first place, as well as conducting internal reviews to ensure that such practices are actually being followed.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B9780128007440000129

Geographical Data

Joe Celko, in Joe Celko’s Complete Guide to NoSQL, 2014

8.3 SQL Extensions for GIS

In 1991, the National Institute for Science and Technology (NIST) set up the GIS/SQL work group to look at GIS extensions. Their work is available as “Towards SQL Database Language Extensions for Geographic Information Systems” at http://books.google.com.

In 1997, the Open Geospatial Consortium (OGC) published “OpenGIS Simple Features Specifications for SQL,” which proposes several conceptual ways for extending SQL to support spatial data. This specification is available from the OGC website at http://www.opengis.org/docs/99-049.pdf. For example, PostGIS is an open-source, freely available, and fairly OGC-compliant spatial database extender for the PostgreSQL Database Management System. SQL Server 2008 has its spatial support: there is Oracle Spatial, and the DB2 spatial extender. These extensions add spatial functions such as distance, area, union, intersection, and specialty geometry data types to the database, using the OGC standards.

The bad news is that they all have the feeling of an OO add-on stuck to the side of the RDBMS model. The simple truth is that GIS is different from RDBMS. The best user interface for GIS is graphical, while RDBMS works best with the linear programming language Dr. Codd required in his famous 12 rules.

Read moreNavigate Down

View chapterPurchase book

Read full chapter

URL: https://www.sciencedirect.com/science/article/pii/B978012407192600008X

Procedural Constructs

Joe Celko, in Joe Celko's SQL for Smarties (Fourth Edition), 2011

7.1 CREATE PROCEDURE

The ANSI/ISO Standard 4GL programming language in SQL is the SQL/PSM (Persistent Stored Modules). The defining document is ISO/IEC 9075-4:2003, Information technology—Database languages—SQL—Part 4: Persistent Stored Modules (SQL/PSM).

However, many SQL products have had their own procedure languages, so you should look at what your particular vendor has given you. Oracle has a proprietary language called PL/SQL, which is very close to SQL/PSM. IBM now supports both PL/SQL and SQL/PSM.

T-SQL is the proprietary 4GL language with Microsoft and Sybase SQL Server. It is a simple one-pass compiler not intended for application development work. It has its roots in 16-bit UNIX C compilers that first implemented SQL Server.

Informix 4GL is the proprietary application language for Informix. It is based on Algol and is “under the hood” in many mainframe software packages.

The SQL/PSM was based on the ADA programming language, but looks a lot like other modern block structured programming languages. Each module starts with a header that tells the SQL/PSM compiler as much as it can about the code; the body is a block and can be exited with a return statement. Blocks are nested inside each other.

The blocks declare local variables at the start of the block, has code in the middle, and error handlers at the end of the block. The local variables are the usual SQL data types, but schema objects cannot be created in the SQL/PSM. The control of flow structures are the usual nested blocks (BEGIN-END and BEGIN ATOMIC-END for transactions), selection of control flow (IF-THEN-ELSE, CASE), and iterations (WHILE, etc.) mixed with SQL statements.

The error handler is an interrupt-driven model. When an exception is raised, control jumps to the appropriate error handler no matter where it happens in the block.

This book uses simple SQL/PSM for procedures, but does not attempt to teach the language. It needs a book of its own.

Which language is used to extract data from a database?

SQL is a query language that is used to access and extract data from a database.

What is the best language for database application?

Top 5 programming languages that every database administrator must learn.
#1. Structured Query Language (SQL) It is a standard programming language that is famous for database development among developers. ... .
#2. PHP. ... .
#3. Python. ... .
#4. R. ... .
#5. C#.