To use the ADO.NET Sample, you must have the Microsoft .NET Compact Framework version 1.0 with Service Pack 2 or higher installed on your device.
You can download this component from the Microsoft Download Center at http://www.microsoft.com/downloads/search.aspx?displaylang=en.
The ADO.NET Sample demonstrates a simple application that uses the ADO.NET programming interface. This application allows you to start the sample database running on the network database server and access and modify data using SQL statements.
The source code for this sample is located in samples-dir\SQLAnywhere\ce\ado_net_sample.
You can load this project in Visual Studio from samples-dir\SQLAnywhere\ce\ado_net_sample\ado_net_sample.sln.
NoteIn the ADO.NET Sample user interface, SQL statements must be entered on a single line. |
Start the ADO.NET Sample by tapping Start > Programs > SQLAny10 > ADO.NET Sample.
Tap Connect.
The sample database starts on a network database server. The Server Messages window appears briefly, then disappears.
Tap Exec SQL to execute the default SQL statement, SELECT * FROM Employees
, and then tap Exec SQL.
All the data from the Employees table appears in the data window.
Navigate through the data in the Employees table using the scroll bars on the side and bottom of the data window.
Type the following query that accesses a more specific range of data.
SELECT EmployeeID, Surname FROM Employees
Tap Exec SQL to execute the SQL statement.
The specified range of data replaces the data that was in the data pane.
Type SELECT * FROM Employees ORDER BY EmployeeID
and tap Exec SQL.
Notice the employee Matthew Cobb, with EmployeeID 105.
Type UPDATE Employees SET Surname = 'Jones' WHERE Surname = 'Cobb'
, and then tap Exec SQL to execute the SQL statement.
Type SELECT * FROM Employees ORDER BY EmployeeID
and tap Exec SQL.
Notice that Matthew's last name has been changed from Cobb to Jones.
Type UPDATE Employees SET Surname = 'Cobb' WHERE Surname = 'Jones'
and then tap Exec SQL to reverse the change you made to the sample database.
Verify that the changes were reversed by typing SELECT * FROM Employees ORDER BY EmployeeID
and then tapping Exec SQL.
Notice that Matthew's last name has been changed back to Cobb.
Access data from another table by typing SELECT * FROM Customers
in the Exec SQL field and then tapping Exec SQL.
All the data from the Customers table appears in the data window, replacing the data from the Employees table.
Shut down the database server by tapping Disconnect.
The ADO.NET Sample disconnects, and the database server automatically shuts down.
Close the ADO.NET Sample by tapping the × in the top right corner of the window.