Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 » SQL Anywhere Server - Programming » .NET application programming » .NET Data Provider tutorials

 

Tutorial: Using the Simple code sample

The Simple project uses the .NET Data Provider to obtain a result set from the database server.

Prérequis

You must have Visual Studio and the .NET Framework installed on your computer.

You must have the SELECT ANY TABLE system privilege.

Contexte et remarques

The Simple project is included with the SQL Anywhere samples. It demonstrates a simple listbox that is filled with the names from the Employees table.

 Task
  1. Start Visual Studio.

  2. Click File » Open » Project.

  3. Browse to %SQLANYSAMP16%\SQLAnywhere\ADO.NET\SimpleWin32 and open the Simple.sln project.

  4. When you use the SQL Anywhere .NET Data Provider in a project, you must add a reference to the Data Provider. This has already been done in the Simple code sample. To view the reference to the Data Provider (iAnywhere.Data.SQLAnywhere), open the References folder in the Solution Explorer window.

  5. You must also add a using directive to your source code to reference the Data Provider classes. This has already been done in the Simple code sample. To view the using directive:

    • Open the source code for the project. In the Solution Explorer window, right-click Form1.cs and click View Code.

      In the using directives in the top section, you should see the following line:

      using iAnywhere.Data.SQLAnywhere;

      This line is required for C# projects. If you are using Visual Basic .NET, you need to add an Imports line to your source code.

  6. Click Debug » Start Without Debugging or press Ctrl+F5 to run the Simple sample.

  7. In the SQL Anywhere Sample window, click Connect.

    The application connects to the SQL Anywhere sample database and puts the surname of each employee in the window, as follows:

    Screen shot showing simple window containing a list of employee names and a Connect button.
  8. Close the SQL Anywhere Sample window to shut down the application and disconnect from the sample database. This also shuts down the database server.

Résultat

You have built and executed a simple .NET application that uses the SQL Anywhere .NET Data Provider to obtain a result set from a SQL Anywhere database server.

Suivant

None.

Exemple

The complete application can be found in the SQL Anywhere samples directory at %SQLANYSAMP16%\SQLAnywhere\ADO.NET\SimpleWin32.


 See also

The Simple sample project explained