目的
入力LOBをクローズします。
構文
tdr.LobClose(contextID)
- contextID
- パラメータ型: integer
tdr.LobOpen_CL関数によって返されるコンテキストID。
使用上の注意
この関数を呼び出す前に、tdr.LobOpen_CL関数を呼び出して、コンテキストIDを取得します。次に、このコンテキストIDをこの関数の引数として渡します。
この関数は、テーブル演算子から呼び出された場合にのみ有効です。
関数がコントラクト関数から呼び出された場合は、エラーが発生します。
例: 入力LOBのクローズ
5 つの属性(int、int、int、int、clob)を持つ入力テーブルを想定します。この例では、次のように現在行の最後の属性を読み取る方法を示します。
- LOBロケータを取得する
- LOBを開く
- LOBを読み取る
- LOBを閉じる
# Open the input stream inHandle <- tdr.Open("R", 0, 0); # Get the 5th attribute in the current row (LOB locator) att5 <- tdr.GetAttributeByNdx(inHandle, 4, NULL); # Open the LOB for reading inlob <- tdr.LobOpen_CL(att5,0,0); # Read the LOB, convert it to character, and print it string <- tdr.LobRead(inlob$contextID, inlob$LOBlen); print(rawToChar(string$buffer)); # Close the LOB tdr.LobClose(inlob$contextID);