CRUD using AseDataAdapter for SyBase

1. Copy the code from Good practice of CRUD by creating SqlDataAdapter when you cannot use Entity Framework episode 1.

 

2. Add reference to SyBase.Data.AseClient.

 

3. Rename SqlDataAdapter to AseDataAdapter.

 

4. Rename SqlCommand to AseCommand.

 

5. Rename SqlConnection to AseConnection.

 

6. Rename SqlDbType to AseDbType.

 

7. Rename AseParameter to AseParameter.

 

The code will end like below.

 

public static AseDataAdapter CreateCustomerAdapter(AseConnection connection)

{

  AseDataAdapter adapter = new AseDataAdapter();

 

  // Create the SelectCommand.

  AseCommand command = new AseCommand(“SELECT * FROM Customers” +

      “WHERE Country = @Country AND City = @City”, connection);

 

  // Add the parameters for the SelectCommand.

  command.Parameters.Add(“@Country”, AseDbType.NVarChar, 15);

  command.Parameters.Add(“@City”, AseDbType.NVarChar, 15);

 

  adapter.SelectCommand = command;

 

  // Create the InsertCommand.

  command = new AseCommand(

    “INSERT INTO Customers (CustomerID, CompanyName) “ +

    “VALUES (@CustomerID, @CompanyName)”, connection);

 

  // Add the parameters for the InsertCommand.

  command.Parameters.Add(“@CustomerID”, AseDbType.NChar, 5, “CustomerID”);

  command.Parameters.Add(“@CompanyName”, AseDbType.NVarChar, 40, “CompanyName”);

 

  adapter.InsertCommand = command;

 

  // Create the UpdateCommand.

  command = new AseCommand(

    “UPDATE Customers SET CustomerID = @CustomerID, CompanyName = @CompanyName “ +

    “WHERE CustomerID = @oldCustomerID”, connection);

 

  // Add the parameters for the UpdateCommand.

  command.Parameters.Add(“@CustomerID”, AseDbType.NChar, 5, “CustomerID”);

  command.Parameters.Add(“@CompanyName”, AseDbType.NVarChar, 40, “CompanyName”);

  AseParameter parameter = command.Parameters.Add(

    “@oldCustomerID”, AseDbType.NChar, 5, “CustomerID”);

 

  parameter.SourceVersion = DataRowVersion.Original;

  adapter.UpdateCommand = command;

 

  // Create the DeleteCommand.

  command = new AseCommand(

    “DELETE FROM Customers WHERE CustomerID = @CustomerID”, connection);

   

  // Add the parameters for the DeleteCommand.

  parameter = command.Parameters.Add(

    “@CustomerID”, AseDbType.NChar, 5, “CustomerID”);

  parameter.SourceVersion = DataRowVersion.Original;

 

  adapter.DeleteCommand = command;

 

  return adapter;

}

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net and tagged . Bookmark the permalink.

2 Responses to CRUD using AseDataAdapter for SyBase

  1. shida musa says:

    u stated there in step no.2
    2. Add reference to SyBase.Data.AseClient.
    can u explain futhermore on how to add this reference. because i cant find this type of refence in the list

  2. shida musa says:

    hi again.. it’s ok.. i found the solution

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.