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. lk5990

    JDBC, ODBC and Solaris

    I'm new to programming with JDBC and I'm wonder how to register/configure my data source name on Solaris. I see it is done with 32-bit ODBC Data Source on Windows, but how is this done on Solaris? Thanks in advance
  2. lk5990

    Interprocess Communication

    I'm trying to use mq_notify for a real time application to prevent the users from getting 'hung up' waiting for a response from a queue. In my code I have created mqueue_1 and send out a request to another queue, which should return a response to mqueue_1. The code then calls mq_notify before...
  3. lk5990

    mqueue across servers

    I am relatively new to mqueue and I'm trying to interface between two queues within my network but on different UNIX servers. I'm not sure if this is possible, but any information will be useful.
  4. lk5990

    mq_open and permissions problems

    I have a executable running in the background accepting requests into a queue it has created and sending responses back to the calling queue. If I call another executable to send the requests and wait for the response, the program works. If I have another user run the 2nd executable they cannot...
  5. lk5990

    Using mq_open to send and receive messages

    I'm trying to write code using the mqueue library. I'm working on UNIX (solaris), but I can't get me code to run at all. This is a snippit of what I have.. #define PMODE 0666 int main() { int i; mqd_t mqfd; struct mq_attr attr; int open_flags = 0; attr.mq_maxmsg = 20; attr.mq_msgsize = 30...
  6. lk5990

    Query on Date/Time field

    I'm trying to write an automated query to extract records based on a range for a combination date/time field. For example I need all records whose Date/Time field is between 12:00 AM and 11:59 PM on Date() - 30. I've tried writing this with between statements, but I cannot retrieve all the data.
  7. lk5990

    Date/Time field queries

    I need to create an automated query to run everyday based on a Date/Time field. I already know what the Date/Time field should be, for example 07/02/01 12:00 AM, but the day will change every day. How do I create the value for the date/time field automatically?

Part and Inventory Search

Back
Top