Information about Sql Injection
SQL injection is a technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is in fact an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another.
The following line of code illustrates this vulnerability:
statement := "SELECT * FROM users WHERE name = '" + userName + "';"
This SQL code is designed to pull up the records of a specified username from its table of users, however, if the "userName" variable is crafted in a specific way by a malicious user, the SQL statement may do more than the code author intended. For example, setting the "userName" variable as
a' or 't'='t
renders this SQL statement by the parent language:
SELECT * FROM users WHERE name = 'a' or 't'='t';
If this code were to be used in an authentication procedure then this example could be used to force the selection of a valid username because the evaluation of 't'='t' is always true.
On some SQL servers such as MS SQL Server any valid SQL command may be injected via this method, including the execution of multiple statements. The following value of "userName" in the statement below would cause the deletion of the "users" table as well as the selection of all data from the "data" table (in essence revealing the information of every user):
a';DROP TABLE users; SELECT * FROM data WHERE name LIKE '%
This input renders the final SQL statement as follows:
SELECT * FROM users WHERE name = 'a';DROP TABLE users; SELECT * FROM data WHERE name LIKE '%';
statement := "SELECT * FROM data WHERE id = " + a_variable + ";"
It is clear from this statement that the author intended a_variable to be a number correlating to the "id" field. However, if it is in fact a string then the end user may manipulate the statement as they choose, thereby bypassing the need for escape characters. For example, setting a_variable to
1;DROP TABLE users
will delete the "users" table from the database as the rendered SQL would be rendered as follows:
SELECT * FROM data WHERE id = 1;DROP TABLE users;
$query = $sql->prepare ( "select * from users where name = " . $sql->quote($user_name) );
However, this is generally not the best way to approach the issue. DBI allows the use of placeholders, which let you bind data to a statement separately to defining the SQL statement. For databases that do not natively support placeholders, DBI emulates them by automatically applying the DBI::quote function to the values. Many databases do support binding values separately via their APIs; DBI will use the native placeholder support in this case. For example:
$query = $sql->prepare("select * from users where name = ?"); $query->execute($user_name);
The advantage is that you do not have to remember to apply DBI::quote to every value. It is either bound separately, or quoted appropriately, depending on the support offered by the particular DBMS you are using. You then avoid the basic issue of SQL injection where values are interpreted as SQL.
For databases that support placeholders natively, there are often significant performance advantages to using placeholders, as the database can cache the compiled representation of a statement and reuse it between executions with different bound values. Placeholders are also sometimes referred to as 'bind variables' or simply 'parameters'.
In PHP, there are different built-in functions to use for different DBMSes for escaping values suitable for embedding in literal SQL statements. For MySQL, the equivalent is the built-in function mysql_real_escape_string:
$query_result = mysql_query ( "select * from users where name = '" . mysql_real_escape_string($user_name, $dbh) . "'" );
The native interface to a particular DBMS may also offer a method of binding placeholders separately, for example, mysql_stmt_bind_param, or oci_bind_by_name. Alternatively, a database abstraction library can be used to emulate placeholders in a similar way to Perl's DBI. One example out of several available libraries is ADOdb.
In the Java programming language, the equivalent is the PreparedStatement class.
Instead of
Connection con = (acquire Connection) Statement stmt = con.createStatement(); ResultSet rset = stmt.executeQuery("SELECT * FROM users WHERE name = '" + userName + "';");
use the following
Connection con = (acquire Connection) PreparedStatement pstmt = con.prepareStatement("SELECT * FROM users WHERE name = ?"); pstmt.setString(1, userName); ResultSet rset = pstmt.executeQuery();
In the .NET or Mono programming language "C#", the equivalent are the ADO.NET SqlCommand (for Microsoft SQL Server) or OracleCommand (for Oracle's database server) objects. The example below shows how to prevent injection attacks using the SqlCommand object. The code for other ADO.NET providers is very similar, but may vary slightly depending on the specific implementation by that provider vendor.
Instead of
using( SqlConnection con = (acquire connection) ) { con.Open(); using( SqlCommand cmd = new SqlCommand("SELECT * FROM users WHERE name = '" + userName + "'", con) ) { using( SqlDataReader rdr = cmd.ExecuteReader() ){ ... } } }
use the following
using( SqlConnection con = (acquire connection) ) { con.Open(); using( SqlCommand cmd = new SqlCommand("SELECT * FROM users WHERE name = @userName", con) ) {
cmd.Parameters.AddWithValue("@userName", userName);
using( SqlDataReader rdr = cmd.ExecuteReader() ){ ... } } }
This strategy does not solve the SQL injection problem, but it may limit the potential damage.
However, using stored procedures does not solve the code injection problem, if user input is not parameterized or filtered, as in the following (constructed) example: Given two stored procedures GET_PASSWORD(userName) and GET_USER(userName, password), an attacker could still inject code into a GET_USER call if the password is not correctly escaped: GET_USER('admin', '' || GET_PASSWORD('admin') || '').
SELECT * from items where username='$username';
An attacker could use a specially crafted username to expose all items belonging to all users:
' or username is not null or username='
produces the following SQL statement:
SELECT * from items where username='' or username is not null or username='';
Remember, however, that escaping or removing quotes does not completely remove the risk of SQL injection. Let's say your query looks like this:
SELECT * from items where userid=$userid;
Assuming that $userid was assumed to be a numeric value but went unchecked, this specially crafted userid would, again, expose all items belonging to all users:
33 or userid is not null or userid=44
Which, as you can see, contains no single quotes and would result in the query:
SELECT * from items where userid=33 or userid is not null or userid=44;
The best defense, rather than blacklisting known bad input, is to only allow known good input, aka whitelisting. For instance, if you wanted to defend against this attack, you could verify the userid variable to ensure its contents were numeric like so:
if(!ctype_digit($userid)){ die("Invalid characters in userid."); }
SELECT * FROM USER WHERE NAME='Smith' SELECT * FROM ITEMS WHERE USERID=2
are not allowed in this mode (the database engine would simply throw an exception). The queries would have to be written as:
SELECT * FROM USER WHERE NAME=? SELECT * FROM ITEMS WHERE USERID=?
By disabling literals, the usage of placeholders is enforced. Because placeholders must be used for all user input, SQL injection of the form described above becomes impossible in this mode. Disabling literals solves the SQL injection problem in a similar way that array bounds checking and the lack of pointer arithmetic solves buffer overflows in certain programming languages (for example Java or C#). Currently only one database engine (the H2 database engine) supports disabling literals, however the technology is not patented. To harden an application against SQL injection, it is not required to use this feature at production. Instead, it may be enough to just run unit tests using this mode and a database that supports this feature.
..... Click the link for more information.
..... Click the link for more information.
Forms of SQL injection vulnerabilities
Incorrectly filtered escape characters
This form of SQL injection occurs when user input is not filtered for escape characters and is then passed into a SQL statement. This results in the potential manipulation of the statements performed on the database by the end user of the application.The following line of code illustrates this vulnerability:
statement := "SELECT * FROM users WHERE name = '" + userName + "';"
This SQL code is designed to pull up the records of a specified username from its table of users, however, if the "userName" variable is crafted in a specific way by a malicious user, the SQL statement may do more than the code author intended. For example, setting the "userName" variable as
a' or 't'='t
renders this SQL statement by the parent language:
SELECT * FROM users WHERE name = 'a' or 't'='t';
If this code were to be used in an authentication procedure then this example could be used to force the selection of a valid username because the evaluation of 't'='t' is always true.
On some SQL servers such as MS SQL Server any valid SQL command may be injected via this method, including the execution of multiple statements. The following value of "userName" in the statement below would cause the deletion of the "users" table as well as the selection of all data from the "data" table (in essence revealing the information of every user):
a';DROP TABLE users; SELECT * FROM data WHERE name LIKE '%
This input renders the final SQL statement as follows:
SELECT * FROM users WHERE name = 'a';DROP TABLE users; SELECT * FROM data WHERE name LIKE '%';
Incorrect type handling
This form of SQL injection occurs when a user supplied field is not strongly typed or is not checked for type constraints. This could take place when a numeric field is to be used in a SQL statement, but the programmer makes no checks to validate that the user supplied input is numeric. For example:statement := "SELECT * FROM data WHERE id = " + a_variable + ";"
It is clear from this statement that the author intended a_variable to be a number correlating to the "id" field. However, if it is in fact a string then the end user may manipulate the statement as they choose, thereby bypassing the need for escape characters. For example, setting a_variable to
1;DROP TABLE users
will delete the "users" table from the database as the rendered SQL would be rendered as follows:
SELECT * FROM data WHERE id = 1;DROP TABLE users;
Vulnerabilities inside the database server
Sometimes vulnerabilities can exist within the database server software itself, as was the case with the MySQL server'sreal_escape_chars() functions.
Securing applications against SQL injection
Application remediation
SQL injection is easy to work around in most programming languages that target web applications or offer functionality. In Perl DBI, the DBI::quote method escapes special characters (assuming the variable $sql holds a reference to a DBI object):$query = $sql->prepare ( "select * from users where name = " . $sql->quote($user_name) );
However, this is generally not the best way to approach the issue. DBI allows the use of placeholders, which let you bind data to a statement separately to defining the SQL statement. For databases that do not natively support placeholders, DBI emulates them by automatically applying the DBI::quote function to the values. Many databases do support binding values separately via their APIs; DBI will use the native placeholder support in this case. For example:
$query = $sql->prepare("select * from users where name = ?"); $query->execute($user_name);
The advantage is that you do not have to remember to apply DBI::quote to every value. It is either bound separately, or quoted appropriately, depending on the support offered by the particular DBMS you are using. You then avoid the basic issue of SQL injection where values are interpreted as SQL.
For databases that support placeholders natively, there are often significant performance advantages to using placeholders, as the database can cache the compiled representation of a statement and reuse it between executions with different bound values. Placeholders are also sometimes referred to as 'bind variables' or simply 'parameters'.
In PHP, there are different built-in functions to use for different DBMSes for escaping values suitable for embedding in literal SQL statements. For MySQL, the equivalent is the built-in function mysql_real_escape_string:
$query_result = mysql_query ( "select * from users where name = '" . mysql_real_escape_string($user_name, $dbh) . "'" );
The native interface to a particular DBMS may also offer a method of binding placeholders separately, for example, mysql_stmt_bind_param, or oci_bind_by_name. Alternatively, a database abstraction library can be used to emulate placeholders in a similar way to Perl's DBI. One example out of several available libraries is ADOdb.
In the Java programming language, the equivalent is the PreparedStatement class.
Instead of
Connection con = (acquire Connection) Statement stmt = con.createStatement(); ResultSet rset = stmt.executeQuery("SELECT * FROM users WHERE name = '" + userName + "';");
use the following
Connection con = (acquire Connection) PreparedStatement pstmt = con.prepareStatement("SELECT * FROM users WHERE name = ?"); pstmt.setString(1, userName); ResultSet rset = pstmt.executeQuery();
In the .NET or Mono programming language "C#", the equivalent are the ADO.NET SqlCommand (for Microsoft SQL Server) or OracleCommand (for Oracle's database server) objects. The example below shows how to prevent injection attacks using the SqlCommand object. The code for other ADO.NET providers is very similar, but may vary slightly depending on the specific implementation by that provider vendor.
Instead of
using( SqlConnection con = (acquire connection) ) { con.Open(); using( SqlCommand cmd = new SqlCommand("SELECT * FROM users WHERE name = '" + userName + "'", con) ) { using( SqlDataReader rdr = cmd.ExecuteReader() ){ ... } } }
use the following
using( SqlConnection con = (acquire connection) ) { con.Open(); using( SqlCommand cmd = new SqlCommand("SELECT * FROM users WHERE name = @userName", con) ) {
cmd.Parameters.AddWithValue("@userName", userName);
using( SqlDataReader rdr = cmd.ExecuteReader() ){ ... } } }
Database remediation
Security privileges
Setting security privileges on the database to the least-required is a simple remediation. Few applications will require that the application user has delete rights to a table or database.This strategy does not solve the SQL injection problem, but it may limit the potential damage.
Stored procedures
Most databases also offer the capability of preparing SQL statements at the database layer via stored procedures. Rather than using an application layer to construct SQL dynamically, stored procedures encapsulate reusable database procedures that are called with typed parameters. This provides several security advantages: by parameterizing input parameters and type-enforcing them, user input is effectively filtered. In addition, most databases allow stored procedures to execute under different security privileges from the database user. For instance, an application would have execute access to a stored procedure, but no access to the base tables. This restricts the ability of the application to do anything beyond the actions specified in the stored procedures.However, using stored procedures does not solve the code injection problem, if user input is not parameterized or filtered, as in the following (constructed) example: Given two stored procedures GET_PASSWORD(userName) and GET_USER(userName, password), an attacker could still inject code into a GET_USER call if the password is not correctly escaped: GET_USER('admin', '' || GET_PASSWORD('admin') || '').
Preventing multi-statement attacks
It is also important to note that the standard query method of the MySQL C client library will not allow more than one query in one input, preventing the multi-statement attack described above. However, even benign user input containing escape characters (eg single-quotes) could still cause the application to crash from a bad SQL syntax. Even some attacks are possible, for example consider a website showing a list of items for a known username. The query executed is:SELECT * from items where username='$username';
An attacker could use a specially crafted username to expose all items belonging to all users:
' or username is not null or username='
produces the following SQL statement:
SELECT * from items where username='' or username is not null or username='';
Remember, however, that escaping or removing quotes does not completely remove the risk of SQL injection. Let's say your query looks like this:
SELECT * from items where userid=$userid;
Assuming that $userid was assumed to be a numeric value but went unchecked, this specially crafted userid would, again, expose all items belonging to all users:
33 or userid is not null or userid=44
Which, as you can see, contains no single quotes and would result in the query:
SELECT * from items where userid=33 or userid is not null or userid=44;
The best defense, rather than blacklisting known bad input, is to only allow known good input, aka whitelisting. For instance, if you wanted to defend against this attack, you could verify the userid variable to ensure its contents were numeric like so:
if(!ctype_digit($userid)){ die("Invalid characters in userid."); }
Disabling literals
The SQL injection problem can be solved if the database engine supports a feature called 'disabling literals'. Disabling literals means the database engine runs in a mode where text and number literals are not allowed as part of SQL statements; only placeholders are allowed. So statements of the form:SELECT * FROM USER WHERE NAME='Smith' SELECT * FROM ITEMS WHERE USERID=2
are not allowed in this mode (the database engine would simply throw an exception). The queries would have to be written as:
SELECT * FROM USER WHERE NAME=? SELECT * FROM ITEMS WHERE USERID=?
By disabling literals, the usage of placeholders is enforced. Because placeholders must be used for all user input, SQL injection of the form described above becomes impossible in this mode. Disabling literals solves the SQL injection problem in a similar way that array bounds checking and the lack of pointer arithmetic solves buffer overflows in certain programming languages (for example Java or C#). Currently only one database engine (the H2 database engine) supports disabling literals, however the technology is not patented. To harden an application against SQL injection, it is not required to use this feature at production. Instead, it may be enough to just run unit tests using this mode and a database that supports this feature.
Real-world examples
- On October 31, 2004, After being linked from Slashdot, the Dremel site was changed to a Goatse pumpkin
- On October 26, 2005, Unknown Heise readers replaced a page by the German TV station ARD which advertised a pro-RIAA sitcom with Goatse using SQL injection
- On January 13, 2006, Russian hackers broke into a Rhode Island government web site and allegedly stole credit card data from individuals who have done business online with state agencies.
- On November 01, 2005, A high school student used SQL injection to break into the site of a Taiwanese information security mazagine from the Tech Target group and steal customer's information.
- On March 29, 2006, Susam Pal discovered an SQL injection flaw in www.incredibleindia.org, an official Indian government tourism site.
- On January 1, 2007, Dr.Jr7 SQL injected Nokia's website in a rather tame and civil way, but but then Digg users proceeded to change it to Goatse and bukkake
- On March 2, 2007, Sebastian Bauer discovered an SQL injection flaw in knorr.de login page.
- On June 29, 2007, Hacker Defaces Microsoft U.K. Web Page using SQL injection.
- On August 12, 2007, The United Nations web site was defaced using SQL injection.
In Popular Culture
See also
References
External links
- "SQL Injection Basic Guide"
- "Advanced SQL Injection" By Victor Chapela
- "MySQL Cheat Sheet" By Ronald van den Heetkamp
- "MS Access SQL Injection Cheat Sheet" By Luca "daath" De Fulgentis
- "SQLrand: Preventing SQL Injection Attacks" by Stephen W. Boyd and Angelos D. Keromytis
- "What is SQL Injection?" By CGISecurity.com
- "What is Blind SQL Injection?" By CGISecurity.com
- "SQL Injection WASC Threat Classification Entry" By The Web Application Security Consortium
- Avoid SQL injection
- SQL Injection Cheat Sheet
- Securing Your Web
- SQL Injection by Example
- Hacker Defense
- Protection against SQL Injection by Disabling Literals (H2 Database only so far)
- Open Source SQL Firewall
- A sneaky way to secure your site against SQL injections
- Top 15 free SQL Injection Scanners
vulnerability refers to a weakness in a system allowing an attacker to violate the confidentiality, integrity, availability [i.e (C.I.A) NSTISSC's triangle], access control, consistency or audit mechanisms of the system or the data and applications it hosts.
..... Click the link for more information.
..... Click the link for more information.
database is a structured collection of records or data that is stored in a computer system so that a computer program or person using a query language can consult it to answer queries. The records retrieved in answer to queries are information that can be used to make decisions.
..... Click the link for more information.
..... Click the link for more information.
Application software is a subclass of computer software that employs the capabilities of a computer directly and thoroughly to a task that the user wishes to perform. This should be contrasted with system software which is involved in integrating a computer's various capabilities,
..... Click the link for more information.
..... Click the link for more information.
A string literal is the representation of a string value within the source code of a computer program. There exist numerous alternate notations for specifying string literals, and the exact notation depends on the individual programming language in question.
..... Click the link for more information.
..... Click the link for more information.
- This article refers to codes used as commands for computing devices. Escape sequence can also refer to a sequence of escape characters used in parsing source code.
..... Click the link for more information.
SQL
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
In computer science and computer programming, the term strong typing is used to describe those situations where programming languages specify one or more restrictions on how operations involving values having different datatypes can be intermixed.
..... Click the link for more information.
..... Click the link for more information.
- This article refers to codes used as commands for computing devices. Escape sequence can also refer to a sequence of escape characters used in parsing source code.
..... Click the link for more information.
SQL
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
SQL
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
Paradigm: multi-paradigm
Appeared in: 1974
Designed by: Donald D. Chamberlin and Raymond F. Boyce
Developer: IBM
Latest release: SQL:2003/ 2003
Typing discipline: static, strong
Major implementations: Many
SQL
..... Click the link for more information.
In computer science and computer programming, the term strong typing is used to describe those situations where programming languages specify one or more restrictions on how operations involving values having different datatypes can be intermixed.
..... Click the link for more information.
..... Click the link for more information.
In programming languages a data type defines a set of values and the allowable operations on those values[1]. For example, in the Java programming language, the "int" type represents the set of 32-bit integers ranging in value from -2,147,483,648 to 2,147,483,647, and
..... Click the link for more information.
..... Click the link for more information.
string is an ordered sequence of symbols. These symbols are chosen from a predetermined set.
In programming, when stored in memory each symbol is represented using a numeric value.
..... Click the link for more information.
In programming, when stored in memory each symbol is represented using a numeric value.
..... Click the link for more information.
MySQL (pronounced (IPA) /mɑɪ ɛs kjuː ɛl/, "my S-Q-L"[1]) is a multithreaded, multi-user SQL database management system (DBMS)[2]
..... Click the link for more information.
..... Click the link for more information.
A programming language is an artificial language that can be used to control the behavior of a machine, particularly a computer. Programming languages, like natural languagess, are defined by syntactic and semantic rules which describe their structure and meaning respectively.
..... Click the link for more information.
..... Click the link for more information.
Perl
Paradigm: Multi-paradigm
Appeared in: 1987
Designed by: Larry Wall
Latest release: 5.8.8/ January 31 2006
Typing discipline: Dynamic
Influenced by: AWK, BASIC, BASIC-PLUS, C, C++, Lisp, Pascal, Python, sed, Unix shell
..... Click the link for more information.
Paradigm: Multi-paradigm
Appeared in: 1987
Designed by: Larry Wall
Latest release: 5.8.8/ January 31 2006
Typing discipline: Dynamic
Influenced by: AWK, BASIC, BASIC-PLUS, C, C++, Lisp, Pascal, Python, sed, Unix shell
..... Click the link for more information.
PHP
Paradigm: imperative, object-oriented
Appeared in: 1995
Designed by: Rasmus Lerdorf
Developer: The PHP Group
Latest release: 5.2.4/ 30 August 2007
Typing discipline: Dynamic, weak (duck typing)
Influenced by: C, Perl
Java, C++, Python
..... Click the link for more information.
Paradigm: imperative, object-oriented
Appeared in: 1995
Designed by: Rasmus Lerdorf
Developer: The PHP Group
Latest release: 5.2.4/ 30 August 2007
Typing discipline: Dynamic, weak (duck typing)
Influenced by: C, Perl
Java, C++, Python
..... Click the link for more information.
MySQL (pronounced (IPA) /mɑɪ ɛs kjuː ɛl/, "my S-Q-L"[1]) is a multithreaded, multi-user SQL database management system (DBMS)[2]
..... Click the link for more information.
..... Click the link for more information.
Java
Paradigm: Object-oriented, structured, imperative
Appeared in: 1995
Designed by: Sun Microsystems
Typing discipline: Static, strong, safe, nominative
Major implementations: Numerous
Influenced by: Objective-C, C++, Smalltalk, Eiffel,[1]
..... Click the link for more information.
Paradigm: Object-oriented, structured, imperative
Appeared in: 1995
Designed by: Sun Microsystems
Typing discipline: Static, strong, safe, nominative
Major implementations: Numerous
Influenced by: Objective-C, C++, Smalltalk, Eiffel,[1]
..... Click the link for more information.
.NET Framework is a software component that can be added to or is included with Microsoft Windows operating system. It provides a large body of pre-coded solutions to common program requirements, and manages the execution of programs written specifically for the framework. The .
..... Click the link for more information.
..... Click the link for more information.
Mono is a project led by Novell (formerly by Ximian) to create an Ecma standard compliant .NET compatible set of tools, including among others a C# compiler and a Common Language Runtime. Mono can be run on Linux, BSD, UNIX, Mac OS X, Solaris and Windows operating systems.
..... Click the link for more information.
..... Click the link for more information.
C#
Paradigm: structured, imperative, object-oriented
Appeared in: 2001 (last revised 2005)
Designed by: Microsoft Corporation
Typing discipline: static, strong, both safe and unsafe, nominative
Major implementations: .NET Framework, Mono, DotGNU
Dialects: 1.
..... Click the link for more information.
Paradigm: structured, imperative, object-oriented
Appeared in: 2001 (last revised 2005)
Designed by: Microsoft Corporation
Typing discipline: static, strong, both safe and unsafe, nominative
Major implementations: .NET Framework, Mono, DotGNU
Dialects: 1.
..... Click the link for more information.
A stored procedure is a subroutine available to applications accessing a relational database system. Stored procedures (sometimes called a sproc or SP) are actually stored in the database.
..... Click the link for more information.
..... Click the link for more information.
In programming languages a data type defines a set of values and the allowable operations on those values[1]. For example, in the Java programming language, the "int" type represents the set of 32-bit integers ranging in value from -2,147,483,648 to 2,147,483,647, and
..... Click the link for more information.
..... Click the link for more information.
MySQL (pronounced (IPA) /mɑɪ ɛs kjuː ɛl/, "my S-Q-L"[1]) is a multithreaded, multi-user SQL database management system (DBMS)[2]
..... Click the link for more information.
..... Click the link for more information.
C
The C Programming Language, Brian Kernighan and Dennis Ritchie, the original edition that served for many years as an informal specification of the language.
..... Click the link for more information.
The C Programming Language, Brian Kernighan and Dennis Ritchie, the original edition that served for many years as an informal specification of the language.
..... Click the link for more information.
October 31 is the feast day of the following Roman Catholic Saints: St. Arnulf St. Bega St. Quentin St.
..... Click the link for more information.
..... Click the link for more information.
20th century - 21st century - 22nd century
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2001 2002 2003 - 2004 - 2005 2006 2007
2004 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2001 2002 2003 - 2004 - 2005 2006 2007
2004 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
October 26th is the feast day of the following Roman Catholic Saints: St. Albinus St. Alfred the Great St. Cedd St.
..... Click the link for more information.
..... Click the link for more information.
20th century - 21st century - 22nd century
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2002 2003 2004 - 2005 - 2006 2007 2008
2005 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2002 2003 2004 - 2005 - 2006 2007 2008
2005 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
This article is copied from an article on Wikipedia.org - the free encyclopedia created and edited by online user community. The text was not checked or edited by anyone on our staff. Although the vast majority of the wikipedia encyclopedia articles provide accurate and timely information please do not assume the accuracy of any particular article. This article is distributed under the terms of GNU Free Documentation License.
Herod_Archelaus