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

    Fetching records in bulk (ODBC)

    Figured it out....TIMESTAMP_STRUCT No more errors.
  2. noaaprogrammer

    Fetching records in bulk (ODBC)

    Here's some more information... After tracing through, the following error is being returned in the trace route: "Error in column 2: Restricted data type attribution violation". Column 2 is a DATE type in Oracle. I am trying to bind it to a long* type in Visual C++. It's not working. What C++...
  3. noaaprogrammer

    Fetching records in bulk (ODBC)

    I need some help from someone experienced in bulk row fetching with ODBC. I have a dialog app that queries an Oracle database. I had a CRecordset-derived class that initially fetched single rows. I soon discovered that I needed to fetch more than one row at a time, so I decided to implement...
  4. noaaprogrammer

    VC++ SQL error......

    There is no problem. As I said, it works fine now.
  5. noaaprogrammer

    VC++ SQL error......

    And, yes, VC++ DOES support SQL functions. Translater() included.
  6. noaaprogrammer

    VC++ SQL error......

    I figured it out. When I created the database class using the '*', VC++ created objects for all of the columns. In my query that only selected one of those columns, VC++ couldn't find the data to fill all of the database objects, so the error was a result. I added all of the columns to my query...
  7. noaaprogrammer

    VC++ SQL error......

    And this query runs fine in VC++: select * from raw_data where payload_message_id='46069' and measurement_date=to_date('2004050315','YYYYMMDDHH24')
  8. noaaprogrammer

    VC++ SQL error......

    I am getting an "Invalid descriptor index" error when I run the following query in VC++. select translate(raw_message, chr(0), chr(7))raw_message from raw_data where payload_message_id='46069' and measurement_date=to_date('2004050315','YYYYMMDDHH24') This query runs just fine in SQL Plus...
  9. noaaprogrammer

    Sending mouse coordinates to PHP????

    Okay. I got Flash to send the X-Y coordinates to my PHP file. I changed the jpeg from a button to a movie clip. That allowed me to add this action script to it: onClipEvent (mouseDown) { myX = _root._xmouse; myY = _root._ymouse; getURL("testing.php","_self","get")...
  10. noaaprogrammer

    Sending mouse coordinates to PHP????

    That's what I need to figure out.
  11. noaaprogrammer

    Sending mouse coordinates to PHP????

    I am attempting to create a Flash game that interacts with a MySQL database using PHP. I created a 600x600 pixel .jpeg in Fireworks, and would like to import it into Flash. I want the user to click on a spot of the image, and I want Flash to send the coordinates of the mouse click to a PHP file...
  12. noaaprogrammer

    Run-Time Check Failure #3 - Weird error.

    No one has had this problem?
  13. noaaprogrammer

    Run-Time Check Failure #3 - Weird error.

    **Please note - This problem only occurs in debug mode. It runs perfectly in Release.
  14. noaaprogrammer

    Run-Time Check Failure #3 - Weird error.

    I just upgraded from Visual C++ 6.0 to 7.0. I compiled and ran my program (which worked fine on 6.0), and I get this error message at run-time: Run-Time Check Failure #3 - The variable 'fcal' is being used without being defined. I know for a fact that it is defined. I can even step through in...
  15. noaaprogrammer

    ODBC acting crazy. Help needed from you ODBC w/ Oracle pros.

    I am also thinking that is is a network problem. I just don't know what. My SQLPlus connects and runs fine, but of course that doesn't use ODBC. I'm not familiar with an Oracle ODBC test utility. Unfortunately, our DBA got fired a few days ago, so I don't have anyone to ask about that.
  16. noaaprogrammer

    ODBC acting crazy. Help needed from you ODBC w/ Oracle pros.

    My app connects to the database, reads the records of field in the db, then opens up the dialog. One of the fields of the dialog is a drop-down list that contains those records that were initially fetched. The dialog takes some user input, goes back to the db with the input parameters, fetches...
  17. noaaprogrammer

    ODBC acting crazy. Help needed from you ODBC w/ Oracle pros.

    I am having some serious problems with an application that uses ODBC to connect to an Oracle 8i database. I developed the app on an NT machine, and everything functioned perfectly. My machine was recently upgraded to 2000 Pro. When I run the app, I get the ODBC for Oracle login dialog...
  18. noaaprogrammer

    Change letter of new hard drive?????

    Thanks for the suggestions. I got it fixed. Apparently, the software that came with my new Western Digital wasn't able to completely clone my disk. I used Norton Ghost 2003 to clone the old disk to the new one, and now it is working properly.
  19. noaaprogrammer

    Change letter of new hard drive?????

    I just installed a second hard drive on my PC. I installed it as the slave, copied the master over to it, and then reversed them so that the new drive is now the master. I am booting up to the new drive fine. However, my new drive has the drive letter "F:" and the old (slave) drive...
  20. noaaprogrammer

    Difficult problem

    Thank you for getting back to the topic. They are not replicating the db now. I guess I worded it wrong. What I meant was that they created the database and it's forms, and distributed it to the four different sites. They all input their individual records into the db. They want to merge them...

Part and Inventory Search

Back
Top