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

  • Users: Ultdrake
  • Order by date
  1. Ultdrake

    cin whitespace problem

    Thanks a lot, u save my weekend :-)
  2. Ultdrake

    cin whitespace problem

    The user press enter on his keyboard...
  3. Ultdrake

    cin whitespace problem

    I want grab a string with whitespace and I try many thing... I work in vc++ console mode... string adress; getline(cin, adress); or getline(cin, adress, '\n'); or cin >> noskipws >> adress; the first and the second work but I have to press two time the 'Enter' key to continue and the third...
  4. Ultdrake

    Hexa special char in form

    When I use a form, the Querry String change the special caracter in hexadecimal. But I want write the querry string in a txt file with the original caracter not the hexa one... What can I do?
  5. Ultdrake

    DOS script for Unix database

    it's clear and simple... thanks...
  6. Ultdrake

    DOS script for Unix database

    I want tranfer a .sql file create by a perl on DOS script to unix and execute him on oracle database. The transfer, the creation of .sql file and the execution on the database must be do by the same perl on DOS script. I know it's a multi part question, but the most important part is execute...
  7. Ultdrake

    .sql files

    Tranfer a .sql file create by a script to unix and execute him on oracle database. The transfer, the creation of .sql file and the execution on the database must be do by the same perl on DOS script. I know it's a multi part question, but the most important part is execute .sql file on unix by...
  8. Ultdrake

    tm and dec package

    I'm searching the "tm" and the "dec" package... Where i can download it? thanks Fred
  9. Ultdrake

    Oracle error on VB (ORA-04091)

    ORA-04091 table mutating, trigger/function may not see it... After a research I find many solution in PL/SQL But i'm working on a VB program, I know the problem is cause by the an update on Primary Key and I try DROP all Constraint and recreate it after the update withoput sucess... I'm a bit...
  10. Ultdrake

    SQL Plus DESCRIBE function

    The describe fonction give information on a table and his raw... but she doesn't give information on constraint... I need information on constraint for a table how can I obtain it?
  11. Ultdrake

    I search a method

    I'm searching a method or function to change accentuate caracter to normal caracter in a string. Or a propriety for combo box do same kind of effect... exemple: É to E, î to i... This will be do before insert in a database. Thanks, Fred
  12. Ultdrake

    How read a files line by line with dos batch files?

    http://www.ericphelps.com/batch/lists/line-seq.htm this page help me, but it's doesn't work in is whole... Thanks a lot... I think i'm ok...
  13. Ultdrake

    How read a files line by line with dos batch files?

    I want to read a text file, one line at a time and then do what depending on the line contents. thanks...
  14. Ultdrake

    How read a files line by line with dos batch files?

    How read a files line by line with dos batch files?
  15. Ultdrake

    Dos Batch file for copying a file

    My directory tree is like this : Project -- Boat ----- daya -------- linea ... -------- linex ... ----- dayx -------- linea ... -------- linex Exemple : I want to copy from a variable path a file name allo.txt to each lineX directory, each time I don't know how...
  16. Ultdrake

    Unix scripting

    Thanks, this code help me fine...
  17. Ultdrake

    Unix scripting

    I want to validate the name file by file take by the "ls" function. For exemple, I want to copy only *.htm file to an other directory... I'm searching hard... thanks a lot...
  18. Ultdrake

    Load many files under Unix

    j'ai trouvé la solution, merci pour le coup de main... opendir(REP, ".") || die "Probleme $!"; @files = grep { m/.sta/ } readdir REP; closedir REP; print "@files\n";
  19. Ultdrake

    Load many files under Unix

    I'm programming a script Perl on Unix and I want to load all *.sta file in a directory. I need help for find a function to read them one after another without know how many or the name of these files... Thanks Fred

Part and Inventory Search

Back
Top