Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQLMOD (Was RE: ORACLE VS. SYBASE)
SQLMOD ("SQL Module") is how DEC implemented 3GL access to DEC rdb. The dev/programmer created a SQLMOD file that contained ALL SQL statements. This module (file) was then "compiled" separately to create an object file. The 3GL program then just needed to call the functions and procedures defined in the SQLMOD, instead of having to worry about the mess of pre-compiling and binding variables and the like.
A very simple way of implementing SQL in *ANY* 3GL language! If you think about it, all the SQL calls are in the "compiled" SQLMOD that gets linked in with the 3GL code to create the executable. So, as far as the 3GL is concerned, the SQL calls are just another external call.
I think there is also a way to make the SQL more dynamic, but it's been too long since I've actually worked with this stuff.
How's about an example?
Here's an excerpt from a SQLMOD file:
MODULE MY_SQL LANGUAGE BASIC PARAMETER COLONS ALIAS MY_RDB_DB DECLARE MY_RDB_DB ALIAS COMPILETIME filename 'my_rdb_db' RUNTIME FILENAME 'MY_RDB_DB'
declare GET_TICKET_INFO cursor for
SELECT transaction_date,
crdt_card_stmnt_dt, transaction_amount, transaction_status, tax, ticket_penalty, tt_id, trav_doc_type_cd
ttaction.transaction_status = :my_trans_status)
procedure ROLLBACK_TRANSACTION
SQLCODE;
ROLLBACK;
procedure COMMIT
SQLCODE;
COMMIT;
And here's a few sample calls from a BASIC program (remember, this is for rdb on VMS!):
! open cursor
CALL OPEN_GET_TICKET_INFO( SQLCODE.L, TICKET_TRANS_REC::TICKET_ID, &
STAT.CODE.L )IF SQLCODE.L <> 0 THEN
ERROR.TEXT.S = "Record locked by another User." ! GOSUB GENERAL_ERROR ELSE SYS.STATUS.L = RDB$MESSAGE_VECTOR::RDB$LU_STATUS CALL SQL$GET_ERROR_TEXT( ERROR.TEXT.S ) CALL ROLLBACK_TRANSACTION (SQLCODE.L) CAUSE ERROR BAS$K_NOTBASIC
! procede with data collection GOSUB FILL_TICKET_DETAIL GOSUB PUT_RECORD CASE SQLCODE_EOS ! fall out of loop CASE SQLCODE_DEADLOCK, SQLCODE_LOCK_CONFLICT CALL ROLLBACK_TRANSACTION (SQLCODE.L) ERROR.TEXT.S = "Record locked by another User." VALID.DATA.B = FALSE.B CASE ELSE SYS.STATUS.L = RDB$MESSAGE_VECTOR::RDB$LU_STATUS CALL SQL$GET_ERROR_TEXT( ERROR.TEXT.S ) CALL ROLLBACK_TRANSACTION (SQLCODE.L) CAUSE ERROR BAS$K_NOTBASIC
! close cursor
CALL CLOSE_GET_TICKET_INFO ( SQLCODE.L )
IF SQLCODE.L <> 0 THEN SYS.STATUS.L = RDB$MESSAGE_VECTOR::RDB$LU_STATUS CALL SQL$GET_ERROR_TEXT( ERROR.TEXT.S ) CALL ROLLBACK_TRANSACTION (SQLCODE.L) CAUSE ERROR BAS$K_NOTBASIC END IF ----------------------------------------------------------------------------
If there's anybody from Oracle on this list.... :)
Rich Jesse System/Database Administrator Rich.Jesse_at_qtiworld.com Quad/Tech International, Sussex, WI USA
-----Original Message-----
Sent: Tuesday, September 25, 2001 14:52
To: Multiple recipients of list ORACLE-L
Care to explain further, SQLMOD concept, for those like me who have no idea what this is?
thx
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jesse, Rich INET: Rich.Jesse_at_qtiworld.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Sep 25 2001 - 16:18:44 CDT
![]() |
![]() |