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

SQL Anywhere 12.0.1 » SQL Anywhere Server - SQL Usage » Remote data and bulk operations » Server classes for remote data access » ODBC-based server classes » Server class odbc

 

Lotus Notes SQL 2.0

To obtain this driver, go to the Lotus web site at [external link] http://www.lotus.com/. Read the documentation that is included with it for an explanation of how Notes data maps to relational tables. You can easily map SQL Anywhere tables to Notes forms.

Here is how to set up SQL Anywhere to access the Address sample file.

  • Create an ODBC data source using the NotesSQL driver. The database will be the sample names file: c:\notes\data\names.nsf. The Map Special Characters option should be turned on. For this example, the Data Source Name is my_notes_dsn.

  • Create a server in SQL Anywhere:

    CREATE SERVER names
    CLASS 'odbc'
    USING 'my_notes_dsn';
  • Map the Person form into a SQL Anywhere table:

    CREATE EXISTING TABLE Person
    AT 'names...Person';
  • Query the table:

    SELECT * FROM Person;
 Avoiding password prompts