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 strongm 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: *

  1. unirams

    Find first occurance of the word in a file

    Hi jmiturbe, jmiturbe In both ways its working fine. Thanks for your help. Regards, Ram
  2. unirams

    Find first occurance of the word in a file

    Hi, Can anyone able to help me out in the following. I want to find the first occurance of a word in a file. But I want to have that entire line (not that word alone). Does grep has any options for that? Regards, Ram
  3. unirams

    Problem in sdiff command.

    Any other idea???? Thanks, Ram
  4. unirams

    Problem in sdiff command.

    Hi Everyone, I had strange result when i ran sdiff command as below. Actually i have 2 files, in which file1 has the following content. X Y Z In File2, i have added one big line in between X and Y as below. X TAP_SUB_TRAN_TYP 2 #SubResp 52-pendingE/O...
  5. unirams

    Problem while running DBI program

    Please find the code below. sub BEGIN { push (@INC,"/usr/local/mysql-3.21.33b-sun-solaris2.6-sparc/perl/DBI"); } foreach $i (@INC) { print $i; print "\n"; } print "Tet"; #use DBI; #my @drivers=DBI->available_drivers(); #die "No drivers...
  6. unirams

    Problem while running DBI program

    Hi, While running my perl program which intend uses DBI methods to connect to MySQL database, i am getting the following error. Can't locate loadable object for module DBI in @INC (@INC contains: /usr/local/lib/perl5/5.6.1/sun4-solaris /usr/local/l ib/perl5/5.6.1...
  7. unirams

    problem while running the script ./scripts/mysql_install_db

    Hi, After successfully installing mysql under solaris machine (Sparc), while i am trying to run the script ./scripts/mysql_install_db, system giving me the following error. As a result, default tables mysql, test was not created. ld.so.1: ./bin/my_print_defaults: fatal: libz.so.1: open...
  8. unirams

    How to install MySQL in Sun Solaris - Sparc machine

    Hi, Can anyone tell me which version of mySQL i need to install in Sun solaris - sparc machine. Please give me a link from mysql site where i have to download it. I have downloaded one version which i thing source distribution. But i want to have binary distribution. Please let me know...
  9. unirams

    Socket Programming

    Hi, I am very beginner for VC++ sockets. I want to learn in depth things in socket using MFC/SDK. Please advice me how to start it. What are all the books that are available to know the concept from basics? Please let me know. Thanks in advance. Ram
  10. unirams

    Warning -

    Hi Matt, Thanks for your response. It was really helpful to me to solve the one. But i am curious that whether we have any comiler option to solve those warning messages in HP platform. Thanks and regards, Ram
  11. unirams

    Warning -

    Hi, I am working on to remove warning messages in all my C,C++ files in both Sun and HP machines. When i compile my CPP program in Sun environment, it gives me the following warning. "../src/CPUtils.cpp", line 26: Warning (Anachronism): Formal argument comp of type int(*)(const...
  12. unirams

    Warning (Anachronism) in unix C++

    Hi, I have the following functions declared in my CPP program. static int strToInt(const StrIntMap* map, const RWCString& str, int notFound, bool bNotFoundPassed, int ((*comp)(const char *, const char *))) And the function is called with in an other function as shown below. strToInt(const...
  13. unirams

    Hi, How to connect the ORACLE

    Hi Chris, Thanks for your response. I am little bit beginner to these types of programming. Can you explain me in depth. Thanks again Regards, Ram
  14. unirams

    Hi, How to connect the ORACLE

    Hi, How to connect the ORACLE database available in UNIX platform through 32bits ODBC for Windows. Actually, i am going to do the project in VB, but the database is already available in ORACLE under Unix. Just i want to make the connection established to that database (under unix) from my...
  15. unirams

    ODBC / JDBC - Which one is fast

    Hi folks, Is there any idea about the difference between ODBC and JDBC? I heard that ODBC is much faster than JDBC. If so, please let us know why? As i am in the need of converting my existing tool from Windows specific to cross platform, i am going to recode the same tool in Java. Quick...
  16. unirams

    VB/Java

    Hi, I have an application which was already developed using VB with the backend MS-Access. But that application supposed to be useful in network. I.e., Database should be a center repositary in which all the user on NT can able to access that application. By setting ORACLE as a back-end can we...
  17. unirams

    Hi, I have the following line of

    Hi, I have the following line of codes in my library file(.h). #ifdef __cplusplus extern "C" { #endif extern void function(int a, int b); extern void function2(int x, int y); #ifdef __cplusplus } #endif But i didn't find out the exact declaration and definition place of the...
  18. unirams

    Problem using "long double" data type

    Hi Maniraja, Still it is not working. I have found the solution. Please my previous response to ankan. Thanks Ram
  19. unirams

    Problem using "long double" data type

    Hi, Thanks for your response. But the code below is working fine now. d = 123456789012345. + (long double)d1; Thanks and regards, Ram
  20. unirams

    Problem using "long double" data type

    Hi, Anyone help me to find the control string for long double. I want to print the number as it is. I wrote the following program main() { long double d; double d1; d1 = (double)(double)999/(double)1000; d=(double)(123456789012345+d1); printf("\nd=%Lf\n",d); } For...

Part and Inventory Search

Back
Top