User Profile

Collapse

Profile Sidebar

Collapse
Girish Kanakagiri
Girish Kanakagiri
Last Activity: Jan 19 '12, 12:29 PM
Joined: May 9 '07
Location: Bangalore, Karnataka, India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hi Richard, What you are saying is correct but I am using Unix OS & not windows & thus tell me what should i include to make this DbNull working at this environment?
    See more | Go to post

    Leave a comment:


  • Oracle.
    connect by below string to the ip through putty :
    SQLPLUS userid/password
    See more | Go to post
    Last edited by Girish Kanakagiri; Jan 18 '12, 09:15 AM. Reason: Got right db

    Leave a comment:


  • Issue while inserting through DECODE function

    Code:
    SQL>desc tab_dup;
    
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     CODE                                      NOT NULL VARCHAR2(6)
     BYJE                                               DATE
    
    SQL>  insert into tab_dup (CODE, BYJE) values('ABC',TO_DATE('20120111070154', 'YYYYMMDDHH24MISS'));
    ...
    See more | Go to post
    Last edited by Girish Kanakagiri; Jan 18 '12, 06:46 AM. Reason: line number correction

  • Actually the select statement is at one function & the insert statement is another function. In the insert function before insert statement fetch is executed to populate the values to local variables & then by these local variables, insertion is done in the loop for every record.
    Actually after select query execution before insertion some more tasks are performed & that's why both these things are separated by presenting them...
    See more | Go to post

    Leave a comment:


  • Can you tell me the command to check the stack

    can u tell me the command to view stack in core dump.
    I am getting core dump because of some ealier code issue.
    I am using GDB.

    Please tell me the command to view the content of stack so that I can reach to core dump issue.
    See more | Go to post

  • How to insert Null, after selecting values

    I have 2 tables. TabA and TabAdup

    both table structure is same. I executed a select query (with some condition) on TabA & fetched the values to local variables.

    Then I ran insert query to TabAdup with values from local variables.

    These are carried out in a for loop for all the values

    Here there are 8 column have structure as NULL ALLOWED.(NOT NULL - is not there)
    During insertion...
    See more | Go to post

  • Girish Kanakagiri
    started a topic need a source command eqlnt

    need a source command eqlnt

    Hi,

    In csh (C-Shell) we have source command

    source <file name>

    I need equivalent command for this "source" in ksh.

    Why I need:
    As I am running a script under ksh (K-Shell).
    I entered two below commands

    csh
    source .myfl
    <special command>

    script did not execute further, after executing csh.
    It got halted...
    See more | Go to post
    Last edited by Girish Kanakagiri; Jul 19 '11, 01:08 PM. Reason: Some more information added

  • Girish Kanakagiri
    started a topic plugin in C++
    in C

    plugin in C++

    Hi,

    I have never used plugin in C++.
    I have around 10 years experience with C++.
    I have been asked in interview. Can any one re-direct me for related article or link for beginning plugin in C++
    See more | Go to post

  • FILE *OFILE = NULL;
    fwrite(ptr2stru c, sizeof(mystruct ype),1,OFILE);
    fwrite("\n", 1,1,OFILE);
    fwrite(ptr2stru c, sizeof(mystruct ype),1,OFILE);
    o/p file->
    sj sljflsfjlfkl //o/p of 1st fwrite
    \0 \0 \0
    sfjslfjl //o/p of 3rd fwrite
    \0 \0
    I am getting null characters [\0] being written to the o/p file .this is not the expected char to be printed
    See more | Go to post

    Leave a comment:


  • Girish Kanakagiri
    started a topic How to avoid NULL character when using fwrite
    in C

    How to avoid NULL character when using fwrite

    Through fwrite I am writting to a file & I have closed &
    re-opened a file in "a"(append) mode & using multiple
    fwrite function one after another on to a same file.

    It is working fine but evrey time after fwrite has written to the file at the end of the file it is inserting lot of NULL char(s) as well. I dont want these
    Null char. How can I get rid of this?

    Thanks in Advance.
    See more | Go to post

  • Does any one know IDE set up for Visual C++ 2005 Express edition? ---

    Hi,

    I want to create a new project & want to build the DLL from my source files created, instead of building ".exe"

    How can I do this?

    Bye,
    Girish.
    See more | Go to post

  • I can use it as a dedicated server. OS is windowsXp. What to do after installing IIS? I hope you will reply.

    Regards,
    Girish....
    See more | Go to post

    Leave a comment:


  • Please move it to iis forum. Thanks a lot again....
    See more | Go to post

    Leave a comment:


  • Thanks Kevin. One more thing. If I wont have Apache server, can I use IIS ?

    in that case how can I do this task ?...
    See more | Go to post

    Leave a comment:


  • Girish Kanakagiri
    started a topic how to add in local host

    how to add in local host

    I have created a html page. I want to see it in internet explorer by typing
    http://localhost/
    How can I do this ?

    [I have installed Apache web server in my system]

    please reply to the earliest.
    See more | Go to post

  • Girish Kanakagiri
    started a topic how to see our html file in local host ?
    in IIS

    how to see our html file in local host ?

    I have created a html page. I want to see it in internet explorer by typing
    http://localhost/
    How can I do this ?

    [I have installed Apache web server in my system]

    please reply to the earliest.
    See more | Go to post

  • Girish Kanakagiri
    replied to Problem in overloaded operator
    in C
    Hello,

    I had gone to tools->options [in the Directories tab] ShowDirectories for
    selected < Library files>
    and included the path of comsupp.lib the directories listing.

    Is this the one you are asking.

    I am not finding any difference in the error message.

    Thanks & Regards,
    Girish....
    See more | Go to post

    Leave a comment:


  • Girish Kanakagiri
    replied to Problem in overloaded operator
    in C
    result



    Hello,

    I added the comsupp.lib to projects->settings->Link(tab)->Catagory [Input]
    Under Project Options added comsupp.lib at the end.

    Since it is VC++ 6.0; I am nat able to find projects and solutions Under tools->option [for point 3]

    As of now I am still getting the same error

    Please reply me for the same.

    Thanks,...
    See more | Go to post
    Last edited by Girish Kanakagiri; Dec 19 '07, 01:36 PM. Reason: in complete

    Leave a comment:


  • Girish Kanakagiri
    replied to Problem in overloaded operator
    in C
    Thanks a lot for the reply.
    How to add comsupp.lib to the project as an additional linker dependency?

    I actually tried like this.

    In the Active project, I went to project->settings then in the link tab with the General catagory; I added comsupp.lib in the "Project Options" section but
    I am still getting this error. I am not sure whether these are the steps to add
    linker dependency. Can...
    See more | Go to post

    Leave a comment:


  • Girish Kanakagiri
    started a topic Problem in overloaded operator
    in C

    Problem in overloaded operator

    Hi,

    Can any one please resolve this compilation error it is very urgent.

    ..\DBAccess\Loc alization.cpp(3 81) : error C2593: 'operator + ' is ambiguous

    Error executing cl.exe

    DK_SSE_VCT.dll - 1 error(s), 0 warning(s)

    Actually This was running fine earlier.
    Now the VC++ 6.0 Environment has been
    reset, As VC++ installed in new system & while trying to build I...
    See more | Go to post
No activity results to display
Show More
Working...