Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SkiLift
  • Content: Threads
  • Order by date
  1. SkiLift

    memcmp versus strcmp, why is memcmp faster?

    Why is memcmp faster than strcmp?
  2. SkiLift

    CRTSQLCI - precompile error on SQL CONNECT

    Does anyone know why the code below compiles ok on v4r2 but does not compile on v5r1? The error msg is below the code. It seems to require a USING clause now, when before it did not. BTW, the last else stmt passes compile, ie, you can connect without a user or pw, so the security reason does...
  3. SkiLift

    Command to display all references of executable file?

    I seem to remember a Unix command that has an executable file as its one argument. The command displays all the references of the executable, for example: globol variables, function calls, etc... Does anyone know of such a command? It is similar to 'ldd'.
  4. SkiLift

    Will hpux 11.11 build run on 11.0?

    Does anyone know if I compile and link on hpux 11.11 and copy the program to hpux 11.0, is it guaranteed to work?
  5. SkiLift

    TruUnix 5.1 - binaries 32 or 64 bit

    I understand that TruUnix5.1 is a true 64 bit machine. On other machines, like solaris 8 and Aix 5.1, I can compile and link in 32 bit or 64 bit mode. I can use the "file" command to see if binaries are 32 or 64 bit. For Ex: $ file lib/libsqlplus.so lib/libsqlplus.so: ELF 64-bit MSB...
  6. SkiLift

    How do I get SQL output to a file on AS400?

    I tried going into strsql and doing F13. From there I select 1, change session attributes. Then, I select output to file... I do a select statement and the output goes to the file. The problem is, I dont get column names and the numeric data is garbage (being print as chars) How do I get...
  7. SkiLift

    AS400 - new C file - getting Definition not found for symbol 'xyz'

    I am trying to add a new C source file to a program. I also changed an existing source file to call functions in the new source file. All source files compile OK. The link (actually CRTSRVPGM) is complaining that: Definition not found for symbol 'xyz' It appears to me that CRTSVRPGM does...
  8. SkiLift

    getcwd() on AS400 / OS 400 / V5R1

    Looking for documentation on the getcwd() function on the AS400, specifically what header file needs to be included.
  9. SkiLift

    Is Hp Itanium 11.23 and Hp Itanium 2 the same?

    Are the following OS names the same thing? 1. HPUX 11.23 itanium 2. HP Itanium 2 3. HP 11i v2
  10. SkiLift

    How to printf string starting in column 42.

    I have a string that can be from 1 to 40 chars in length. I want to start printing in column 42. I cant figure out how to do it. The following ends in column 42. Is there a way to do this? Do I have to print out 41 spaces first? printf("%42.40s\n", "Open DB no. 1"); yields...
  11. SkiLift

    How do I load a dll in Visual Basic

    When running a program in Visual Basic 6.0, it says it can not load a dll. How do I tell it where and how to load the dll?
  12. SkiLift

    Best way to get pwd from portable C code

    Is the code below actually the best way to get the present working directory? The code must be portable to many flavors of Unix and Windows. The code works, but is very long for a simple thing. #include <stdio.h> #include <stdlib.h> #include <string.h> #define WIN #ifdef UNIX #include...
  13. SkiLift

    Need how to reference on MSSQL-C interface

    Does anyone know of a good book or internet site, where I can learn about the C interface to MSSQL?
  14. SkiLift

    Does MSSQL have the equiv of the &quot;describe&quot; sqlplus cmd?

    I tried to do a &quot;describe&quot; cmd in the mssql query analyzer and there is no such cmd. Does MSSQL have the equivalent of the sqlplus &quot;describe&quot; cmd? I know I can look at the tree structure in the left pane, but I wanted an ascii printout that I could edit.
  15. SkiLift

    Porting C code and getting POSIX pthread errors

    I am porting C code to Reliant Unix 5.45 and I ran into compile errors related to POSIX threads. It appears that I have an old version of Posix threads, because I fixed the compile error by changing the 2nd parameter of pthread_mutex_init from NULL to pthread_mutexattr_default...

Part and Inventory Search

Back
Top