1. Microsoft eMbedded VC++4.0 영문버전

2. Microsoft eMbedded VC++4.0 SP4 -영문버전

3. Microsoft SDK For Windows Mobile 2003-based Pocket PCs -  영문버전

4. Developer Resources for Windows Mobile 2003 Second Edition

5. 한글 Pocket PC 2003 Emulator Image

6. 영문 Pocket PC 2003 SE Emulator Image

7. 한글 Pocket PC 2003 SE Emulator Image

8. Run-Time Type Information Library for the Windows Mobile-based Pocket PC 2003 SDK

'Mobile > PocketBuilder' 카테고리의 다른 글

## ASA 설치  (0) 2013.05.03
SYMBOL MC70XX 부팅  (0) 2013.05.03
PDA : 중국사이트 개발시  (0) 2013.05.03
FORWARD TO statement  (0) 2013.05.03
PoketBuilder 배포 파일과 개발툴 버전은 동일하게.  (0) 2008.12.01

1. 서버에 ASA 설치

 서버는 디비서버에 같이 설치해도 상관없으며, PC급 서버에 설치해도 상관없음.

 : proxy server는 여러개 생성해도 상관없음이름만 틀리게 생성해야 함.

 ; network 로 설치 --> 서버에 proxy server 데몬이 실행되면 네트워크 상에 실행중인 proxy server 이름으로 구별하는 것같음동일한 이름으로 proxy server를 생성하여 실행하면 데몬이실행되지 않음.

 

2. 서버 데이터 원본(ODBC) SETTING

: DB서버 설정.

; proxy server와 DB는 ODBC로 연결.

 

3. proxy server 버전 체크

: dbsrv9 -v

메시지 창에 해당 버전표시확인.

; dos

 

4. proxy server생성(dos)

dbinit proxy_server

유니코드인 경우는

         dbinit -z utf8 proxy_server

 

proxy_server 이름은 맘대로..

해당 이름으로 해당서버 구별

 

5. 서버 기동

; dbsrv9 -n proxy_server -x tcpip{serverport=2345proxy_server.db

밑줄은 옵션임.

serverport=2345 --> 포트 번호

 

6. ASA에 Remote Server 등록.

 

7. 해당 Remote Server의 table등록

 

'Mobile > PocketBuilder' 카테고리의 다른 글

에뮬레이터 설치순서  (0) 2013.05.03
SYMBOL MC70XX 부팅  (0) 2013.05.03
PDA : 중국사이트 개발시  (0) 2013.05.03
FORWARD TO statement  (0) 2013.05.03
PoketBuilder 배포 파일과 개발툴 버전은 동일하게.  (0) 2008.12.01

 

< Warm Boot >
POWER 
버튼을 5초정도 누릅니다.

< Cold Boot >
1 + 9 + POWER 
를 동시에 누릅니다

< Clean Boot >
Cold Boot
후 오른쪽 회색 트리거 버튼을 누른다.

'Mobile > PocketBuilder' 카테고리의 다른 글

에뮬레이터 설치순서  (0) 2013.05.03
## ASA 설치  (0) 2013.05.03
PDA : 중국사이트 개발시  (0) 2013.05.03
FORWARD TO statement  (0) 2013.05.03
PoketBuilder 배포 파일과 개발툴 버전은 동일하게.  (0) 2008.12.01

1.DB(Oracle) : UTF8

2.DB Client의 NLS_LANG : UTF8

3.Proxy_DB 생성 시 : -z utf8 옵션으로 생성

4.os가 중국어 os 또는 폰트를 설치해야 PDA 상에서 개발한(Poketbuilder) 응용PG 폰트가 잘보임.

 


 Description

Use this statement to send native syntax SQL statements to a remote server.

 Syntax 1

FORWARD TO server-name sql-statement

 Syntax 2

FORWARD TO [ server-name ]

 Usage

The FORWARD TO statement enables users to specify the server to which a passthrough connection is required. The statement can be used in two ways:

  • Syntax 1    Send a single statement to a remote server.

  • Syntax 2    Place Adaptive Server Anywhere into passthrough mode for sending a series of statements to a remote server. All subsequent statements are passed directly to the remote server. To turn passthrough mode off, issue FORWARD TO without a server-namespecification.

    If you encounter an error from the remote server while in passthrough mode, you must still issue a FORWARD TO statement to turn passthrough off.

When establishing a connection to server-name on behalf of the user, the server uses:

  • A remote login alias set using CREATE EXTERNLOGIN, or

  • If a remote login alias is not set up, the name and password used to communicate with Adaptive Server Anywhere

If the connection cannot be made to the server specified, the reason is contained in a message returned to the user.

After statements are passed to the requested server, any results are converted into a form that can be recognized by the client program.

server-name    The name of the remote server.

SQL-statement    A command in the native SQL syntax of the remote server. The command or group of commands is enclosed in curly brackets ({}).

Note 
The FORWARD TO statement is a server directive and cannot be used within procedures or batches.
 Permissions

None

 Side effects

The remote connection is set to AUTOCOMMIT (unchained) mode for the duration of the FORWARD TO session. Any work that was pending prior to the FORWARD TO statement is automatically committed.

 Standards and compatibility
  • SQL/92    Vendor extension.

  • SQL/99    Vendor extension.

  • Sybase    Supported by Open Client/Open Server.

 Example

The following example shows a passthrough session with the remote server ase_prod:

FORWARD TO aseprod
  'SELECT * FROM titles;  SELECT * FROM authors';
FORWARD TO

+ Recent posts