User's Guide
PART 1. Working with Databases
CHAPTER 9. Using SQL in Applications
The way you include SQL statements in your application depends on the application development tool and programming interface you are using. This chapter describes some principles common to most or all interfaces and provides a few pointers for more information. It does not provide a detailed guide for programming using any one interface.
ODBC If you are writing directly to the ODBC programming interface, your SQL statements appear in function calls. For example, the following C function call executes a DELETE statement:
SQLExecDirect( stmt, "DELETE FROM employee WHERE emp_id = 105", SQL_NTS );
JDBC If you are using the JDBC programming interface, you can execute SQL statements by invoking methods of the statement object. For example:
stmt.executeUpdate( "DELETE FROM employee WHERE emp_id = 105" );
Embedded SQL If you are using Embedded SQL, you prefix your C language SQL statements with the keyword EXEC SQL. The code is then run through a preprocessor before it is compiled. For example:
EXEC SQL EXECUTE IMMEDIATE 'DELETE FROM employee WHERE emp_id = 105';
Sybase Open Client If you are using the Sybase Open Client interface, your SQL statements appear in function calls. For example, the following pair of calls executes a DELETE statement:
ret = ct_command(cmd, CS_LANG_CMD, "DELETE FROM employee WHERE emp_id=105" CS_NULLTERM, CS_UNUSED); ret = ct_send(cmd);
Application Development Tools Application development tools such as the members of the Powersoft PowerStudio family provide their own SQL objects, which use either ODBC (PowerBuilder, Power++) or JDBC (Power J) under the covers.
For detailed information on how to include SQL in your application, see your development tool documentation. If you are using ODBC or JDBC, consult the software development kit for those interfaces.
For a detailed description of Embedded SQL programming, see The Embedded SQL Interface.
In many ways, stored procedures and triggers act as applications or parts of applications running inside the server. You can use many of the techniques here in stored procedures also. Stored procedures use statements that are very similar to Embedded SQL.
For information about stored procedures and triggres, see Using Procedures, Triggers, and Batches.
Java classes in the database can use the JDBC interface in just the same way as Java applications outside the server. This chapter discusses some aspects of JDBC. For other information on using JDBC, see Data Access Using JDBC.