This lesson describes how to set up the application files.
Create the application files
Create the file c:\tutorial\main.htm.
Later in the tutorial, you will add more logic to main.htm. For now, you will simply set it up to include a platform-specific file, ul_deps.html.
Add the following content to main.htm:
<html> <body> <a href="AG_DEVICEOS/ul_deps.html"></a> </body> </html> |
Create the platform-specific file, ul_deps.html.
This file references specific binaries for different operating systems, as follows:
Windows: c:\tutorial\WIN32_OS\ul-deps.htm
<!-- WIN32_OS\ul_deps.html --> <html> <a href="ulpod11.dll"></a> <a href="tutCustomer.udb"></a> </html> |
Windows Mobile: c:\tutorial\WINCE_OS\ul-deps.htm
<!-- WINCE_OS\ul_deps.html --> <html> <a href="AG_DEVICEPROCESSOR/ulpod11.dll"></a> <a href="tutCustomer.udb"></a> </html> |
Palm: c:\tutorial\PALM_OS\ul-deps.htm
<!-- PALM_OS\ul_deps.html --> <html> <a href="ulpod11.prc"></a> <a href="tutCustomer.pdb"></a> </html> |
Copy the UltraLite Pod file, ulpod11.dll for Windows and Windows Mobile or .prc for Palm, to the tutorial directory.
All application files are now in place.
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |