1 / 57

Database Connections with ASP.Net

Database Connections with ASP.Net. A large number of computer applications—both desktop and web applications—are data-driven . These applications are largely concerned with retrieving, displaying, and modifying data.

ita
Download Presentation

Database Connections with ASP.Net

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Database Connections with ASP.Net A large number of computer applications—both desktop and web applications—are data-driven. These applications are largely concerned with retrieving, displaying, and modifying data. Retrieving and processing data seems like a fairly straightforward task, but over the past decade the way applications use data has changed repeatedly. Developers have moved from simple client applications that use local databases to distributed systems that rely on centralized databases on dedicated servers. At the same time, data access technologies have evolved. If you’ve worked with Microsoft languages for some time, you’ve most likely heard of (and possibly used) an alphabet soup of data access technologies that includes ODBC, DAO, RDO, RDS, and ADO.

  2. Database Connections with ASP.Net The .NET Framework includes its own data access technology, ADO.NET. ADO. NET consists of managed classes that allow .NET applications to connect to data sources (usually relational databases), execute commands, and manage disconnected data. The small miracle of ADO.NET is that it allows you to write more or less the same data access code in web applications that you write for client-server desktop applications, or even single-user applications that connect to a local database.

  3. Database Connections with ASP.Net We will learn about ADO.NET basics such as opening a connection, executing a SQL statement or stored procedure, and retrieving the results of a query. You’ll also learn how to prevent SQL injection attacks and use transactions.

  4. Database Connections with ASP.Net ADO.NET uses a multilayered architecture that revolves around a few key concepts, such as Connection, Command, and DataSet objects. One of the key differences between ADO and ADO.NET is how they deal with the challenge of different data sources. In ADO, programmers always use a generic set of objects, no matter what the underlying data source is. For example, if you want to retrieve a record from an Oracle database, you use the same Connection class you would use to tackle the same task with SQL Server. This isn’t the case in ADO.NET, which uses a data provider model.

  5. Database Connections with ASP.Net

  6. Database Connections with ASP.Net ADO.NET Data Providers A data provider is a set of ADO.NET classes that allows you to access a specific database, execute SQL commands, and retrieve data. A data provider is a bridge between your application and a data source. The classes that make up a data provider include the following: • Connection: You use this object to establish a connection to a data source. • Command: You use this object to execute SQL commands and stored procedures. • DataReader: This object provides fast read-only, forward-only access to the data retrieved from a query. • DataAdapter: This object performs two tasks. First, you can use it to fill a DataSet (a disconnected collection of tables and relationships) with information extracted from a data source. Second, you can use it to apply changes to a data source, according to the modifications you’ve made in a DataSet.

  7. Database Connections with ASP.Net The .NET Framework is bundled with a small set of four providers: • SQL Server provider: Provides optimized access to a SQL Server database (version 7.0 or later). • OLE DB provider: Provides access to any data source that has an OLE DB driver. This includes SQL Server databases prior to version 7.0. • Oracle provider: Provides optimized access to an Oracle database (version 8i or later). • ODBC provider: Provides access to any data source that has an ODBC driver.

  8. Database Connections with ASP.Net When choosing a provider, you should first try to find a native .NET provider that’s customized for your data source. If you can’t find a native provider, you can use the OLE DB provider, as long as you have an OLE DB driver for your data source. The OLE DB technology has been around for many years as part of ADO, so most data sources provide an OLE DB driver (including SQL Server, Oracle, Access, MySQL, and many more). In the rare situation when you can’t find a dedicated .NET provider or an OLE DB driver, you can fall back on the ODBC provider, which works in conjunction with an ODBC driver.

  9. Database Connections with ASP.Net Standardization in ADO.NET At first glance, it might seem that ADO.NET offers a fragmented model, because it doesn’t include a generic set of objects that can work with multiple types of databases. As a result, if you change from one RDBMS to another, you’ll need to modify your data access code to use a different set of classes. But even though different .NET data providers use different classes, all providers are standardized in the same way. More specifically, each provider is based on the same set of interfaces and base classes. For example, every Connection object implements the IDbConnection interface, which defines core methods such as Open() and Close(). This standardization guarantees that every Connection class will work in the same way and expose the same set of core properties and methods.

  10. Database Connections with ASP.Net ADO.NET also has another layer of standardization: the DataSet. The DataSet is an all-purpose container for data that you’ve retrieved from one or more tables in a data source. The DataSet is completely generic—in other words, custom providers don’t define their own custom versions of the DataSet class. No matter which data provider you use, you can extract your data and place it into a disconnected DataSet in the same way. That makes it easy to separate data retrieval code from data processing code. If you change the underlying database, you will need to change the data retrieval code, but if you use the DataSet and your information has the same structure, you won’t need to modify the way you process that data.

  11. Database Connections with ASP.Net Fundamental ADO.NET Classes ADO.NET has two types of objects: connection-based and content-based. Connection-based objects: These are the data provider objects such as Connection, Command, DataAdapter, and DataReader. They execute SQL statements, connect to a database, or fill a DataSet. The connection-based objects are specific to the type of data source. Content-based objects: These objects are really just “packages” for data. They include the DataSet, DataColumn, DataRow, DataRelation, and several others. They are completely independent of the type of data source and are found in the System.Data namespace.

  12. Database Connections with ASP.Net Namespace Description System.Data Contains the key data container classes that model columns, relations, tables, datasets, rows, views, and constraints. In addition, contains the key interfaces that are implemented by the connection-based data objects. System.Data.Common Contains base, mostly abstract classes that implement some of the interfaces from System.Data and define the core ADO.NET functionality. Data providers inherit from these classes to create their own specialized versions. System.Data.OleDb Contains the classes used to connect to an OLE DB provider, including OleDbCommand, OleDbConnection, and OleDbDataAdapter. These classes support most OLE DB providers but not those that require OLE DB version 2.5 interfaces. System.Data.SqlClient Contains the classes you use to connect to a Microsoft SQL Server database, including SqlDbCommand, SqlDbConnection, and SqlDBDataAdapter. These classes are optimized to use the TDS interface to SQL Server.

  13. Database Connections with ASP.Net Namespace Description - Continued System.Data.OracleClient Contains the classes required to connect to an Oracle database (version 8.1.7 or later), including OracleCommand, OracleConnection, and OracleDataAdapter. These classes are using the optimized Oracle Call Interface (OCI). System.Data.Odbc Contains the classes required to connect to most ODBC drivers. These classes include OdbcCommand, OdbcConnection, and OdbcDataAdapter. ODBC drivers are included for all kinds of data sources and are configured through the Data Sources icon in the Control Panel. System.Data.SqlTypes Contains structures that match the native data types in SQL Server.

  14. Database Connections with ASP.Net The Connection Class The Connection class allows you to establish a connection to the data source that you want to interact with. Before you can do anything else (including retrieving, deleting, inserting, or updating data), you need to establish a connection. The core Connection properties and methods are specified by the IDbConnection interface, which all Connection classes implement. Connection Strings When you create a Connection object, you need to supply a connection string. The connection string is a series of name/value settings separated by semicolons (;). The order of these settings is unimportant, as is the capitalization. Taken together, they specify the basic information needed to create a connection. Although connection strings vary based on the RDBMS and provider you are using, a few pieces of information are almost always required: • The server where the database is located: The database server is always located on the same computer as the ASP.NET application, so the loopback alias localhost is used instead of a computer name. • The database you want to use: cars or myorders or … • How the database should authenticate you: You supply the authentication credentials

  15. Database Connections with ASP.Net For example, here’s the connection string you would use to connect to the Northwind database on the current computer : string connectionString = "Data Source=localhost;Initial Catalog=Northwind;" + "user id=outsider;password=K236k236"; If integrated security isn’t supported, the connection must indicate a valid user and password combination. For a newly installed SQL Server database, the sa (system administrator) account is usually present. Here’s a connection string that uses this account: string connectionString = "Data Source=localhost;Initial Catalog=Northwind;" + "user id=sa;password=opensesame"; If you’re using the OLE DB provider, your connection string will still be similar, with the addition of a provider setting that identifies the OLE DB driver. For example, you can use the following connection string to connect to an Oracle database through the MSDAORA OLE DB provider: string connectionString = "Data Source=localhost;Initial Catalog=Sales;" + "user id=sa;password=;Provider=MSDAORA"; And here’s an example that connects to an Access database file: string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + @"Data Source=C:\DataSources\Northwind.mdb";

  16. Database Connections with ASP.Net There’s no reason to hard-code a connection string. The <connectionStrings> section of the web.config file is a handy place to store your connection strings. Here’s an example: <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <connectionStrings> <add name="Northwind" connectionString= "Data Source=localhost;Initial Catalog=Northwind; "user id=sa;password=opensesame"/> </connectionStrings> ... </configuration> You can then retrieve your connection string by name from the WebConfiguration-Manager.ConnectionStrings collection, like so: string connectionString = WebConfigurationManager.ConnectionStrings["Northwind"].ConnectionString;

  17. Database Connections with ASP.Net Testing a Connection Once you’ve chosen your connection string, managing the connection is easy—you simply use the Open() and Close() methods. You can use the following code in the Page.Load event handler to test a connection and write its status to a label: // Create the Connection object. private const string ConnStr = "Driver={MySQL ODBC 3.51 Driver};" + "Server=localhost;Database=cars;uid=outsider;pwd=K236k236;option=3"; try { // Try to open the connection. con.Open(); lblInfo.Text = "<b>Server Version:</b> " + con.ServerVersion; lblInfo.Text += "<br /><b>Connection Is:</b> " + con.State.ToString(); } catch (Exception err) { // Handle an error by displaying the information. lblInfo.Text = "Error reading the database. "; lblInfo.Text += err.Message; } finally { // Either way, make sure the connection is properly closed. // Even if the connection wasn't opened successfully, // calling Close() won't cause an error. con.Close(); lblInfo.Text += "<br /><b>Now Connection Is:</b> "; lblInfo.Text += con.State.ToString(); }

  18. Database Connections with ASP.Net Connections are a limited server resource. This means it’s imperative that you open the connection as late as possible and release it as quickly as possible. In the previous code sample, an exception handler is used to make sure that even if an unhandled error occurs, the connection will be closed in the finally block. If you don’t use this design and an unhandled exception occurs, the connection will remain open until the garbage collector disposes of the SqlConnection object. An alternate approach is to wrap your data access code in a using block. The using statement declares that you are using a disposable object for a short period of time. As soon as the using block ends, the CLR releases the corresponding object immediately by calling its Dispose() method. Interestingly, calling the Dispose() method of a Connection object is equivalent to calling Close().

  19. Database Connections with ASP.Net That means you can rewrite the earlier example in the following, more compact, form: string connectionString = WebConfigurationManager.ConnectionStrings["Northwind"].ConnectionString; SqlConnection con = new SqlConnection(connectionString); using (con) { con.Open(); lblInfo.Text = "<b>Server Version:</b> " + con.ServerVersion; lblInfo.Text += "<br /><b>Connection Is:</b> " + con.State.ToString(); } lblInfo.Text += "<br /><b>Now Connection Is:</b> "; lblInfo.Text += con.State.ToString(); The best part is that you don’t need to write a finally block—the using statement releases the object you’re using even if you exit the block as the result of an unhandled exception.

  20. Database Connections with ASP.Net Connection Pooling Acquiring a connection takes a short, but definite, amount of time. In a web application in which requests are being handled efficiently, connections will be opened and closed endlessly as new requests are processed. In this environment, the small overhead required to establish a connection can become significant and limit the scalability of the system. One solution is connection pooling. Connection pooling is the practice of keeping a permanent set of open database connections to be shared by sessions that use the same data source. This avoids the need to create and destroy connections all the time. Connection pools in ADO.NET are completely transparent to the programmer, and your data access code doesn’t need to be altered. When a client requests a connection by calling Open(), it’s served directly from the available pool, rather than re-created. When a client releases a connection by calling Close() or Dispose(), it’s not discarded but returned to the pool to serve the next request. ADO.NET does not include a connection pooling mechanism. However, most ADO.NET providers implement some form of connection pooling. The SQL Server and Oracle data providers implement their own efficient connection pooling algorithms. These algorithms are implemented entirely in managed code. For a connection to be reused with SQL Server or Oracle, the connection string matches exactly. If it differs even slightly, a new connection will be created in a new pool.

  21. Database Connections with ASP.Net Connection Pooling Settings Setting Description Max Pool Size The maximum number of connections allowed in the pool (defaults to100). If the maximum pool size has been reached, any further attempts to open a connection are queued until a connection becomes available. (An error is raised if the Connection.Timeout value elapses before a connection becomes available.) Min Pool Size The minimum number of connections always retained in the pool (defaults to 0). This number of connections will be created when the first connection is opened, leading to a minor delay for the first request. Pooling When true (the default), the connection is drawn from the appropriate pool or, if necessary, is created and added to the appropriate pool. Connection Lifetime Specifies a time interval in seconds. If a connection is returned to the pool and its creation time is older than the specified lifetime, it will be destroyed. The default is 0, which disables this behavior. This feature is useful when you want to recycle a large number of connections at once.

  22. Database Connections with ASP.Net Here’s an example connection string that sets a minimum pool size: string connectionString = "Data Source=localhost;Initial Catalog=Northwind;" + "Integrated Security=SSPI;Min Pool Size=10"; SqlConnection con = new SqlConnection(connectionString); // Get the connection from the pool (if it exists) // or create the pool with 10 connections (if it doesn't). con.Open(); // Return the connection to the pool. con.Close(); Some providers include methods for emptying out the connection pool. For example, with the SqlConnection you can call the static ClearPool() and ClearAllPools() methods. When calling ClearPool(), you supply a SqlConnection, and all the matching connections are removed. ClearAllPools() empties out every connection pool in the current application domain. (Technically, these methods don’t close the connections. They just mark them as invalid so that they will time out and be closed during the regular connection cleanup a few minutes later.) This functionality is rarely used—typically, the only case it’s useful is if you know the pool is full of invalid connections (for example, as a result of restarting SQL Server) and you want to avoid an error.

  23. Database Connections with ASP.Net The Command and DataReader Classes The Command class allows you to execute any type of SQL statement. Although you can use a Command class to perform data-definition tasks (such as creating and altering databases, tables, and indexes), you’re much more likely to perform data-manipulation tasks (such as retrieving and updating the records in a table). The provider-specific Command classes implement standard functionality, just like the Connection classes. In this case, the IDbCommand interface defines the core set of Command methods that are used to execute a command over an open connection.

  24. Database Connections with ASP.Net Command Basics Before you can use a command, you need to choose the command type, set the command text, and bind the command to a connection. You can perform this work by setting the corresponding properties (CommandType, CommandText, and Connection), or you can pass the information you need as constructor arguments. The command text can be a SQL statement, a stored procedure, or the name of a table. It all depends on the type of command you’re using.

  25. Database Connections with ASP.Net Values for the CommandType Enumeration Value Description CommandType.Text The command will execute a direct SQL statement. The SQL statement is provided in the CommandText property. This is the default value. CommandType.StoredProcedure The command will execute a stored procedure in the data source. The CommandText property provides the name of the stored procedure. CommandType.TableDirect The command will query all the records in the table. The CommandText is the name of the table from which the command will retrieve the records. (This option is included for backward compatibility with certain OLE DB drivers only. )

  26. Database Connections with ASP.Net For example, here’s how you would create a Command object that represents a query: SqlCommand cmd = new SqlCommand(); cmd.Connection = con; cmd.CommandType = CommandType.Text; cmd.CommandText = "SELECT * FROM Employees"; And here’s a more efficient way using one of the Command constructors. Note that you don’t need to specify the CommandType, because CommandType.Text is the default. SqlCommand cmd = new SqlCommand("SELECT * FROM Employees", con);

  27. Database Connections with ASP.Net These examples simply define a Command object; they don’t actually execute it. The Command object provides three methods that you can use to perform the command, depending on whether you want to retrieve a full result set, retrieve a single value, or just execute a nonquery command.

  28. Database Connections with ASP.Net Command Methods Method Description ExecuteNonQuery() Executes non-SELECT commands, such as SQL commands that insert, delete, or update records. The returned value indicates the number of rows affected by the command. ExecuteScalar() Executes a SELECT query and returns the value of the first field of the first row from the rowset generated by the command. This method is usually used when executing an aggregate SELECT command that uses functions such as COUNT() or SUM() to calculate a single value. ExecuteReader() Executes a SELECT query and returns a DataReader object that wraps a read-only, forward-only cursor. The DataReader Class A DataReader allows you to read the data returned by a SELECT command one record at a time, in a forward-only, read-only stream. This is sometimes called a firehose cursor. Using a DataReader is the simplest way to get to your data, but it lacks the sorting and relational abilities of the disconnected DataSet. However, the DataReader provides the quickest possible no-nonsense access to data.

  29. Database Connections with ASP.Net DataReader Methods Method Description Read() Advances the row cursor to the next row in the stream. This method must also be called before reading the first row of data. (When the DataReader is first created, the row cursor is positioned just before the first row.) The Read() method returns true if there’s another row to be read, or false if it’s on the last row. GetValue() Returns the value stored in the field with the specified column name or index, within the currently selected row. The type of the returned value is the closest .NET match to the native value stored in the data source. If you access the field by index and inadvertently pass an invalid index that refers to a nonexistent field, you will get an IndexOutOfRangeException exception. You can also access the same value by name, which is slightly less efficient because the DataReader must perform a lookup to find the column with the specified name. GetValues() Saves the values of the current row into an array. The number of fields that are saved depends on the size of the array you pass to this method. You can use the DataReader.FieldCount property to determine the number of fields in a row, and you can use that information to create an array of the right size if you want to save all the fields.

  30. Database Connections with ASP.Net Method Description GetInt32(),GetChar(), These methods return the value of the field with the specified index GetDateTime(), GetXxx() in the current row, with the data type specified in the method name. Note that if you try to assign the returned value to a variable of the wrong type, you’ll get an InvalidCastException exception. NextResult() If the command that generated the DataReader returned more than one rowset, this method moves the pointer to the next rowset. Close() Closes the reader. If the originator command ran a stored procedure that returned an output value, that value can be read only from the respective parameter after the reader has been closed.

  31. Database Connections with ASP.Net The ExecuteReader() Method and the DataReader The following example creates a simple query command to return all the records from the Employees table in the Northwind database. The command is created when the page is loaded. protected void Page_Load(object sender, System.EventArgs e) { // Create the Command and the Connection objects. string connectionString = WebConfigurationManager.ConnectionStrings["Northwind"].ConnectionString; SqlConnection con = new SqlConnection(connectionString); string sql = "SELECT * FROM Employees"; SqlCommand cmd = new SqlCommand(sql, con); ... ■Note This SELECT query uses the * wildcard to retrieve all the fields, but in real-world code you should retrieve only the fields you really need in order to avoid consuming time to retrieve data you’ll never use. It’s also a good idea to limit the records returned with a WHERE clause if you don’t need all the records.

  32. Database Connections with ASP.Net The connection is then opened, and the command is executed through the ExecuteReader() method, which returns a SqlDataReader, as follows: ... // Open the Connection and get the DataReader. con.Open(); SqlDataReader reader = cmd.ExecuteReader(); ... Once you have the DataReader, you can cycle through its records by calling the Read() method in a while loop. This moves the row cursor to the next record (which, for the first call, means to the first record). The Read() method also returns a Boolean value indicating whether there are more rows to read. In the following example the loop continues until Read() returns false, at which point the loop ends gracefully.

  33. Database Connections with ASP.Net The information for each record is then joined into a single large string. To ensure that these string manipulations performed quickly, a StringBuilder (from the System.Text namespace) is used instead of ordinary string objects. ... // Cycle through the records, and build the HTML string. StringBuilder htmlStr = new StringBuilder(""); while (reader.Read()) { htmlStr.Append("<li>"); htmlStr.Append(reader["TitleOfCourtesy"]); htmlStr.Append(" <b>"); htmlStr.Append(reader.GetString(1)); htmlStr.Append("</b>, "); htmlStr.Append(reader.GetString(2)); htmlStr.Append(" - employee from "); htmlStr.Append(reader.GetDateTime(6).ToString("d")); htmlStr.Append("</li>"); }

  34. Database Connections with ASP.Net This code reads the value of the TitleOfCourtesy field by accessing the field by name through the Item indexer. Because the Item property is the default indexer, you don’t need to explicitly include the Item property name when you retrieve a field value. Next, the code reads the LastName and FirstName fields by calling GetString() with the field index (1 and 2 in this case). Finally, the code accesses the HireDate field by calling GetDateTime().

  35. Database Connections with ASP.Net

  36. Database Connections with ASP.Net // Cycle through the records and all the rowsets, // and build the HTML string. StringBuilder htmlStr = new StringBuilder(""); int i = 0; do { htmlStr.Append("<h2>Rowset: "); htmlStr.Append(i.ToString()); htmlStr.Append("</h2>"); while (reader.Read()) { htmlStr.Append("<li>"); // Get all the fields in this row. for (int field = 0; field < reader.FieldCount; field++) { htmlStr.Append(reader.GetName(field).ToString()); htmlStr.Append(": "); htmlStr.Append(reader.GetValue(field).ToString()); htmlStr.Append("&nbsp;&nbsp;&nbsp;"); } htmlStr.Append("</li>"); } htmlStr.Append("<br /><br />"); i++; } while (reader.NextResult()); // Close the DataReader and the Connection. reader.Close(); con.Close(); // Show the generated HTML code on the page. HtmlContent.Text = htmlStr.ToString();

  37. Database Connections with ASP.Net

  38. Database Connections with ASP.Net SQL Injection Attacks So far, all the examples you’ve seen have used hard-coded values. That makes the examples simple, straightforward, and relatively secure. It also means they aren’t that realistic, and they don’t demonstrate one of the most serious risks for web applications that interact with a database—SQL injection attacks. In simple terms, SQL injection is the process of passing SQL code into an application, in a way that was not intended or anticipated by the application developer. This may be possible because of the poor design of the application, and it affects only applications that use SQL string building techniques to create a command with user-supplied values. Consider the example shown on the next page. In this example, the user enters a customer ID, and the GridView shows all the rows for that customer. In a more realistic example the user would also need to supply some sort of authentication information such as a password. Or, the user ID might be based on a previous login screen, and the text box would allow the user to supply additional criteria such as a date range or the name of a product in the order.

  39. Database Connections with ASP.Net

  40. Database Connections with ASP.Net The problem is how this command is executed. In this example, the SQL statement is built dynamically using a string building technique. The value from the txtID text box is simply pasted into the middle of the string. Here’s the code: string connectionString = WebConfigurationManager.ConnectionStrings["Northwind"].ConnectionString; SqlConnection con = new SqlConnection(connectionString); string sql = "SELECT Orders.CustomerID, Orders.OrderID, COUNT(UnitPrice) AS Items, " + "SUM(UnitPrice * Quantity) AS Total FROM Orders " + "INNER JOIN [Order Details] " + "ON Orders.OrderID = [Order Details].OrderID " + "WHERE Orders.CustomerID = '" + txtID.Text + "' " + "GROUP BY Orders.OrderID, Orders.CustomerID"; SqlCommand cmd = new SqlCommand(sql, con); con.Open(); SqlDataReader reader = cmd.ExecuteReader(); GridView1.DataSource = reader; GridView1.DataBind(); reader.Close(); con.Close();

  41. Database Connections with ASP.Net In this example, a user might try to tamper with the SQL statement. Often, the first goal of such an attack is to receive an error message. If the error isn’t handled properly and the low-level information is exposed to the attacker, that information can be used to launch a more sophisticated attack. For example, imagine what happens if the user enters the following text into the text box: ALFKI' OR '1'='1 Now consider the complete SQL statement that this creates: SELECT Orders.CustomerID, Orders.OrderID, COUNT(UnitPrice) AS Items, SUM(UnitPrice * Quantity) AS Total FROM Orders INNER JOIN [Order Details] ON Orders.OrderID = [Order Details].OrderID WHERE Orders.CustomerID = 'ALFKI' OR '1'='1' GROUP BY Orders.OrderID, Orders.CustomerID This statement returns all the order records. Even if the order wasn’t created by ALFKI, it’s still true that 1=1 for every row. The result is that instead of seeing the specific information for the current customer, all the information is exposed to the attacker, as shown in the next figure. If the information shown on the screen is sensitive, such as Social Security numbers, dates of birth, or credit card information, this could be an enormous problem! In fact, simple SQL injection attacks exactly like this are often the source of problems that affect major e-commerce companies. Often, the vulnerability doesn’t occur in a text box but appears in the query string (which can be used to pass a database value such as a unique ID from a list page to a details page).

  42. Database Connections with ASP.Net

  43. Database Connections with ASP.Net More sophisticated attacks are possible. For example, the malicious user could simply comment out the rest of your SQL statement by adding two hyphens (--).This attack is specific to SQL Server, but equivalent exploits are possible in MySQL with the hash (#) symbol and in Oracle with the semicolon (;). Or the attacker could use a batch command to execute an arbitrary SQL command. With the SQL Server provider, the attacker simply needs to supply a semicolon followed by a new command. This exploit allows the user to delete the contents of another table, or even use the SQL Server xp_cmdshell system stored procedure to execute an arbitrary program at the command line. Here’s what the user would need to enter in the text box for a more sophisticated SQL injection attack to delete all the rows in the Customers table: ALFKI'; DELETE * FROM Customers--

  44. Database Connections with ASP.Net So, how can you defend against SQL injection attacks? You can keep a few good guidelines in mind. First, it’s a good idea to use the TextBox.MaxLength property to prevent overly long entries if they aren’t needed. That reduces the chance of a large block of script being pasted in where it doesn’t belong. In addition, you should restrict the information given by error messages. If you catch a database exception, you should report only a generic message like “Data source error” rather than display the information in the Exception.Message property, which may indicate system vulnerabilities. More importantly, you should take care to remove special characters. For example, you can convert all single quotation marks to two quotation marks, thereby ensuring that they won’t be confused with the delimiters in your SQL statement: string ID = txtID.Text().Replace("'", "''"); Of course, this introduces headaches if your text values really should contain apostrophes. It also suffers because some SQL injection attacks are still possible. Replacing apostrophes prevents a malicious user from closing a string value prematurely. However, if you’re building a dynamic SQL statement that includes numeric values, a SQL injection attack just needs a single space. This vulnerability is often (and dangerously) ignored. An even better approach is to use a parameterized command or a stored procedure that performs its own escaping and is impervious to SQL injection attacks.

  45. Database Connections with ASP.Net Using Parameterized Commands A parameterized command is simply a command that uses placeholders in the SQL text. The placeholders indicate dynamically supplied values, which are then sent through the Parameters collection of the Command object. For example, this SQL statement: SELECT * FROM Customers WHERE CustomerID = 'ALFKI' would become something like this: SELECT * FROM Customers WHERE CustomerID = @CustID The placeholders are then added separately and automatically encoded. The syntax for parameterized commands differs slightly for different providers. With the SQL Server provider, parameterized commands use named placeholders (with unique names). With the OLE DB provider, each hard-coded value is replaced with a question mark. In either case, you need to supply a Parameter object for each parameter, which you insert into the Command.Parameters collection. With the OLE DB provider, you must make sure you add the parameters in the same order that they appear in the SQL string.

  46. Database Connections with ASP.Net The following example rewrites the query to remove the possibility of a SQL injection attack: string connectionString = WebConfigurationManager.ConnectionStrings["Northwind"].ConnectionString; SqlConnection con = new SqlConnection(connectionString); string sql = "SELECT Orders.CustomerID, Orders.OrderID, COUNT(UnitPrice) AS Items, " + "SUM(UnitPrice * Quantity) AS Total FROM Orders " + "INNER JOIN [Order Details] " + "ON Orders.OrderID = [Order Details].OrderID " + "WHERE Orders.CustomerID = @CustID " + "GROUP BY Orders.OrderID, Orders.CustomerID"; SqlCommand cmd = new SqlCommand(sql, con); cmd.Parameters.Add("@CustID", txtID.Text); con.Open(); SqlDataReader reader = cmd.ExecuteReader(); GridView1.DataSource = reader; GridView1.DataBind(); reader.Close(); con.Close();

  47. Database Connections with ASP.Net If you try to perform the SQL injection attack against this revised version of the page, you’ll find it returns no records. That’s because no order items contain a customer ID value that equals the text string ALFKI' OR '1'='1. This is exactly the behavior you want.

  48. Database Connections with ASP.Net Calling Stored Procedures Parameterized commands are just a short step from commands that call full-fledged stored procedures. A stored procedure, of course, is a batch of one or more SQL statements that are stored in the database. Stored procedures are similar to functions in that they are well-encapsulated blocks of logic that can accept data (through input parameter) and return data (through result sets and output parameters). Stored procedures have many benefits: • They are easier to maintain. For example, you can optimize the commands in a stored procedure without recompiling the application that uses it. • They allow you to implement more secure database usage. For example, you can allow the Windows account that runs your ASP.NET code to use certain stored procedures but restrict access to the underlying tables. • They can improve performance. Because a stored procedure batches together multiple statements, you can get a lot of work done with just one trip to the database server. If your database is on another computer, this reduces the total time to perform a complex task dramatically.

  49. Database Connections with ASP.Net Here’s the SQL code needed to create a stored procedure for inserting a single record into the Employees table. This stored procedure isn’t in the Northwind database initially, so you’ll need to add it to the database (using a tool such as Enterprise Manager or Query Analyzer) before you use it. CREATE PROCEDURE InsertEmployee @TitleOfCourtesy varchar(25), @LastName varchar(20), @FirstName varchar(10), @EmployeeID int OUTPUT AS INSERT INTO Employees (TitleOfCourtesy, LastName, FirstName, HireDate) VALUES (@TitleOfCourtesy, @LastName, @FirstName, GETDATE()); SET @EmployeeID = @@IDENTITY GO

  50. Database Connections with ASP.Net This stored procedure takes three parameters for the employee’s title of courtesy, last name, and first name. It returns the ID of the new record through the output parameter called @EmployeeID, which is retrieved after the INSERT statement using the @@IDENTITY function. This is one example of a simple task that a stored procedure can make much easier. Without using a stored procedure, it’s quite awkward to try to determine the automatically generated identity value of a new record you’ve just inserted. Next, you can create a SqlCommand to wrap the call to the stored procedure. This command takes the same three parameters as inputs and uses @@IDENTITY to get and then return the ID of the new record. Here is the first step, which creates the required objects and sets the InsertEmployee as the command text:

More Related