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 SkipVought 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. patlv23

    MQ C api

    I currently don't have access to the MQ installation. Is there any other site I can download the library from? thanks
  2. patlv23

    MQ C api

    thanks kevin, I'll look for that. Just a correction/update to my post, the program that will read from MQ will be running on Windows 2000, not AIX. Thanks
  3. patlv23

    MQ C api

    Hi! Anyone know where i can download API and samples on how to read messages from MQ with C (Unix/AIX). Having a bit of trouble finding it with google. Thanks
  4. patlv23

    Exporting Tables with BLOBs

    Hi, When transferring data between DBs, I usually use Control Center Import/Export functions (comma delimited). However, I tried doing this with a table with a BLOB field (usually a pdf file), and it didn't work(wrong data even for non-BLOB fields). I tried changing the export format to IXF, it...
  5. patlv23

    using LIKE with subqueries/JOIN

    Thanks Brian! Just what I needed :)
  6. patlv23

    using LIKE with subqueries/JOIN

    Hi Say I have these tables Account account_id char(9) ex. "ABC123456", "XYZ332211" (ledger_id + sequence num) Ledger ledger_id char(3) ex. "ABC", "XYZ" branch_id char(1) ex. "B", "C" I'd like to get all accounts given a branch_id. This would be easy enough if account_id were...
  7. patlv23

    when to use jsp xml syntax

    sorry if i don't get the terms right. I think it's called jsp document or something. syntax so jsp conforms to xml. anyway: old/standard jsp syntax: <% ... > xml syntax: <jsp:xxx ... >
  8. patlv23

    when to use jsp xml syntax

    hi! i'm new to jsp so this is probably a basic question. I'm just wondering if the jsp xml syntax is something everyone should shift to, or is it a case to case basis? thanks!
  9. patlv23

    regular expression - have to insert extra&quot;\&quot;

    yup, thanks theboyhope, forgot to follow up that i tested that syntax and it worked. I already figured out that &quot;\&quot; is also an escape character for strings in javascript, which is why the extra &quot;\&quot; is needed.
  10. patlv23

    regular expression - have to insert extra&quot;\&quot;

    Hi! I'm new to regexp and javascript so bear with me. I have the following regular expression in Javascript: commPattern = new RegExp(&quot;^\d\.\d{1,3}$&quot;) ; to check for a format such as 0.01, 9.231, etc. however it doesn't work and returns null. I tried doing an alert(...
  11. patlv23

    Outlook 2000 OLE registration error occurred

    I tried that first but i get this message: &quot;Cannot find the file 'C:\Program' (or one of its components). Make sure the path and filename are correct and that all required libraries are available&quot;
  12. patlv23

    Outlook 2000 OLE registration error occurred

    Hi! Thanks but it didn't work. Did I do it right? I tried this: C:\PROGRA~1\MICROS~2\office\outlook.exe /regserver and got this message: &quot;The command line argument is not valid. Verify the switch you are using.&quot; Thanks again!
  13. patlv23

    Outlook 2000 OLE registration error occurred

    When I try to click the send/receive button, an error is displayed by the Office assistant (can't remember exactly). Then when I try to view/edit accounts, I get an error regarding ole registration plus advice to reinstall the program. I've tried to repair the program, reinstall over existing...
  14. patlv23

    CVS for WinXP

    late reply but for other's use http://ccvs.cvshome.org/servlets/ProjectDownloadList
  15. patlv23

    convert ip address

    is there a way to convert ip address returned by gethostbyname (hex?) to dot notation (12.12.12.12) and vice versa? i'm using unix c. thanks in advance
  16. patlv23

    compiling for ddd

    i've been trying to compile my api for database access. we're supposed to test it with ddd. i'm using mysql 3.23.49 and gcc 2.95.3 on solaris 2.6. this is what is displayed after make: ***************************************************** 139 pgsun02[cwong] > make -f Makefile_DDD clean /bin/rm...
  17. patlv23

    is validation of excel cells possible on the web?

    oh sorry, you posted it somewhere else already
  18. patlv23

    is validation of excel cells possible on the web?

    hmm, i think you have CVS confused with CSV. it happens to me too.
  19. patlv23

    lock timeout

    let's say there are 2 processes a & b. process a write-locks a table. process b tries to read the table but it's locked by process a, so it waits. is there a way for process b to stop waiting (maybe a timeout variable)?
  20. patlv23

    connection timeout

    what should i set to wait_timeout so that mysql will never disconnect idle connections? what other variables must i set? thanks in advance!

Part and Inventory Search

Back
Top