Next, generate test_cpp.o> by compiling
- test_cpp.cpp> with the C++ compiler:.
+ test_cpp.cpp> with the C++ compiler:
c++ -c test_cpp.cpp -o test_cpp.o
-CONNECT TO connection_target [ AS connection_name ] [ USER connection_user_name ]
+CONNECT TO connection_target [ AS connection_name ] [ USER connection_user ]
CONNECT TO DEFAULT
-CONNECT connection_user_name
+CONNECT connection_user
DATABASE connection_target
this mode is active, it tries to behave as if it were the
Informix
precompiler for
Informix E/SQL. Generally spoken this will allow you to use
the dollar sign instead of the EXEC SQL> primitive to introduce
- embedded SQL commands.:
+ embedded SQL commands:
$int j = 3;
$CONNECT TO :dbname;
This statement closes the current connection. In fact, this is a
- synonym for ECPG's DISCONNECT CURRENT>.:
+ synonym for ECPG's DISCONNECT CURRENT>:
$CLOSE DATABASE; /* close the current connection */
EXEC SQL CLOSE DATABASE;