Sponsored Content
Full Discussion: Creating CLOB object in unix
Top Forums Shell Programming and Scripting Creating CLOB object in unix Post 302350579 by Franklin52 on Friday 4th of September 2009 09:08:18 AM
Old 09-04-2009
Bumping up posts or double posting is not permitted in these forums.

Please read the rules, which you agreed to when you registered, if you have not already done so.

You may receive an infraction for this. If so, don't worry, just try to follow the rules more carefully. The infraction will expire in the near future

Thank You.

Proceed here:

https://www.unix.com/unix-dummies-que...#post302350570

The UNIX and Linux Forums.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

creating an "object"

I searched for this but not sure I am using the correct terminology. To meet audit requirements, I need to make sure scripts that may contain sensitive information are not readable by anyone but authorised users. I tried using unix crypt but then I can not execute script. I have never seen... (4 Replies)
Discussion started by: MizzGail
4 Replies

2. UNIX for Advanced & Expert Users

“Ostream” object is not printing message on HP-UNIX for debug mode

The following C++ code segment is not working in debug mode build on HP-UNIX machine. It is not printing "Hello World" message on the screen. While it is working fine in release mode build. ============================================== class KLogStreamBuf : public streambuf { public:... (0 Replies)
Discussion started by: heena
0 Replies

3. Programming

creating object files in a specific directory

hello, i have a makefile in which i am specifying the option for creating the object files of the source files. The option which i am using is this : gcc -c main.c first.c by default these object files are created in the same directory in which the makefile is present. what option... (1 Reply)
Discussion started by: svh
1 Replies

4. UNIX for Dummies Questions & Answers

to make groupings of object using unix command

suppose u have a file 1 2 2 -3 2 2 -3 4 5 -2 -3 -4 -4 -2 1 1 1 so output should be lie that one for groupings... (1 Reply)
Discussion started by: cdfd123
1 Replies

5. UNIX for Dummies Questions & Answers

Object reference not set to an instance of an object

I am new to PHP and UNIX. I am using Apache to do my testing on a Windows Vista machine. I am getting this error when I am trying to connect to a web service. I did a search and did not see any posts that pertain to this. Here is my function: <?php function TRECSend($a, $b, $c, $d,... (0 Replies)
Discussion started by: EddiRae
0 Replies

6. UNIX for Dummies Questions & Answers

Does Unix make clob or blob objects

Hi I have a log file stored in unix file server i need to prepare the clob object of that and store in Oracle Database. Please suggest me or give me some examples Thanks Raj (0 Replies)
Discussion started by: rajeshorpu
0 Replies

7. Programming

Could't pass clob from my shell script

Hello Everyone, I am trying to write a shell script that will read from a file and will call a pl/sql procedure that takes clob as input. Now as varchar2 has a limit much less than clob so i can't just pass the input as in one variable.(size may be >32K). This is what i tried. Not posting the... (0 Replies)
Discussion started by: mayukh.banerjee
0 Replies

8. Shell Programming and Scripting

Fetching CLOB value from oracle into shell script

Hi, Can anybody let me know how i can achieve the below output. I have a select query which selects two columns. I need to spool the value into a dat file for each row that is returned from the query with the coulumn1 as the name of the dat file . ex: column1: location_id column2:... (1 Reply)
Discussion started by: justchill
1 Replies

9. Programming

How to initialize an object with another object of different class?

How to initialize an object of class say "A", with an object of type say "B". The following code give the error message "error: conversion from âAâ to non-scalar type âBâ requested" #include <iostream> using namespace std; class B; class A{ public: A() { cout <<"\nA()" << endl; } ... (1 Reply)
Discussion started by: techmonk
1 Replies

10. Shell Programming and Scripting

C object code compatiblity with UNIX and Linux

Is it possible to use an object code compiled on Unix- sun Os sparc on Redhat linux OS. In our new application we have to create object file on Unix os and then use the object code on Linux OS to compile pro*c code but when we are trying to achieve this we get error: file in wrong format. how can... (3 Replies)
Discussion started by: vivek chaudhary
3 Replies
CUBRID_LOB2_SEEK(3)							 1						       CUBRID_LOB2_SEEK(3)

cubrid_lob2_seek - Move the cursor of a lob object.

SYNOPSIS
bool cubrid_lob2_seek (resource $lob_identifier, int $offset, [int $origin = CUBRID_CURSOR_CURRENT]) DESCRIPTION
The cubrid_lob2_seek(3) function is used to move the cursor position of a lob object by the value set in the $offset argument, to the direction set in the $origin argument. To set the $origin argument, you can use CUBRID_CURSOR_FIRST to set the cursor position moving forward $offset units from the first begin- ning. In this case, $offset must be a positive value. If you use CUBRID_CURSOR_CURRENT for $origin, you can move forward or backward. and $offset can be positive or negative. If you use CUBRID_CURSOR_LAST for $origin, you can move backward $offset units from the end of LOB object and $offset only can be posi- tive. PARAMETERS
o $lob_identifier -Lob identifier as a result of cubrid_lob2_new(3) or get from the result set. o $offset -Number of units you want to move the cursor. o $origin -This parameter can be the following values:CUBRID_CURSOR_FIRST: move forward from the first beginning.CUBRID_CURSOR_CURRENT: move forward or backward from the current position.CUBRID_CURSOR_LAST: move backward at the end of LOB object. RETURN VALUES
TRUE if the process is successful and FALSE for failure. EXAMPLES
Example #1 cubrid_lob2_seek(3) example <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect("localhost", 33000, "demodb", "dba", ""); cubrid_execute($conn,"DROP TABLE if exists test_lob"); cubrid_execute($conn,"CREATE TABLE test_lob (id INT, contents CLOB)"); $req = cubrid_prepare($conn, "INSERT INTO test_lob VALUES(2, ?)"); $lob = cubrid_lob2_new($conn, 'CLOB'); $len = cubrid_lob2_write($lob, "Hello world"); cubrid_lob2_seek($lob, 0, CUBRID_CURSOR_LAST); cubrid_lob2_write($lob, "beautiful"); cubrid_lob2_seek($lob, 15, CUBRID_CURSOR_FIRST); $data = cubrid_lob2_read($lob, 5); echo $data." "; cubrid_lob2_bind($req, 1, $lob); cubrid_execute($req); cubrid_disconnect($conn); ?> SEE ALSO
cubrid_lob2_read(3), cubrid_lob2_write(3), cubrid_lob2_seek64(3), cubrid_lob2_tell(3), cubrid_lob2_tell64(3), cubrid_lob2_size(3), cubrid_lob2_size64(3). PHP Documentation Group CUBRID_LOB2_SEEK(3)
All times are GMT -4. The time now is 02:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy