SQL 2.0 and CVI 5.5 Problem - Help please!

Hi All,
I have recently updated to CVI 5.5. Over the last week I have been update
my programs to 5.5. However, I am having problems with the SQL toolbox -
more specifically the "DBImmediateSQL" function. When the line of code runs
which contains this function, it returns the error code -11, and an
Automation Error code -2147352573, Unknown error.
I am stuck, as this program has been running in 5.0.1 for about a year.
Does anyone have any idea what could be wrong?
Richard

Bill,
After some discussion with the folk from NI, we discovered that it was
caused by the installation of SP4 for MSVS. I found I had to reverse all
changes made by this upgrade to the OBDC and database access. Once this was
done, I reloaded an older version and things worked fine.
Sorry for the delay in replying - been on holidays.
Richard
"Bill Groenwald" wrote in message
news:[email protected]..
>
> Richard,
> I don't have an answer but maybe a clue. I am still running 5.0.1 and have
> just run into the same problem. I'm suspecting a recent install of a
software
> inventory management package effected some Oracle library file that
LabWindows
> goes through. I found that if I switched to the DBActivateSQL for my
insert,
> that worked. I have asked support what could allow DBActivateSQL to work
> and DBImmediateSQL to fail but have no answer yet. If you can, try that
workaround
> to see if it helps. Good Luck.
> Bill Groenwald
>

Similar Messages

  • I'm 67 yrs. old.I want to use my credit in i-tunes to find the app. Yoga Studio for my MacBook Air laptop.All I can find are apps. for i-phones,i-pads and i-pods.Can someone help please.

    I'm 67 yrs. old.I live in the U.K. I want to use my credit in i-tunes to find the Yoga Studio app. for my MacBook Air laptop.All I can find are apps. for i-phones,i-pads and i-pods.Can anyone help please.

    Apps for OSX aren't in iTunes: they are in the App Store in your Applications folder. The payment method is the one registered in iTunes. There's no app actually called Yoga Studio, though there are several Yoga apps. There is an iOS app called Yoga Studio but it appears to have no OSX equivalent, though I haven't done a detailed search.

  • I gifted @18 sings to a friend in August and he cannot redeem them. help please.

    i gifted @18 sings to a friend in August and he cannot redeem them. help please.

    Gifts are country specific.
    You cannot gift to a different country.

  • I have downloaded iCloud control panel but when I sign in with my iTunes username and password it say they are valid but I don't have an iCloud account and Iam lost can you help please.                                                        John

    I have downloaded iCloud control panel but when I sign in with my iTunes username and password it say they are valid but I don’t have an iCloud account and Iam lost can you help please.
    John

    You are getting this message because you are trying to create an iCloud account on a PC.  You can only create iCloud account on an iOS device (iPhone, iPad or iPod Touch) running iOS 5 or higher, or on a Mac running OS X Lion (10.7.5) or higher.  After creating your account on one of these devices you will then be able to sign into the account using this ID on your PC.

  • I have forgotten my password and misplaced my Installation disc and need to reset password, help please! btw are the intsallation disc unique to each computer or could i borrow a friends?

    I have forgotten my password and misplaced my Installation disc and need to reset password, help please! btw are the intsallation disc unique to each computer or could i borrow a friends?

    Call Apple to get replacement DVDs > http://support.apple.com/kb/HE57

  • I downloaded a movie on my apple tv and now when I try to watch it tells me there is an error and to try later.  I have tried several times over the last 5 days and nothing changes.  Any help please?

    I downloaded a movie on my apple tv and now when I try to watch it tells me there is an error and to try later.  I have tried several times over the last 5 days and nothing changes.  Any help please?

    What is your current connection via speedtest.net
    Make sure DNS is set to auto (settings - general - network)
    If on wifi try ethernet

  • Reset phone to factory settings to remove unwanted email addresses from autofilling.  Now trying to only sync real contacts, photos, and apps from backup.  HELP PLEASE!  :)

    Reset phone to factory settings to remove unwanted email addresses from autofilling.  Now trying to only sync real contacts, photos, and apps from backup.  HELP PLEASE! 

    All of this should be on your computer as you should be syncing regularly to your computer.. Just sync it back.
    iPhone User Guide (For iOS 4.2 and 4.3 Software)

  • HT5655 I installed Adobe Flash Player 13 - all I get now is "Plug-in Failure" - tried to uninstall fresh install reinstall and still "Plug-in Failure" HELP PLEASE ?

    I installed Adobe Flash Player 13 - all I get now is "Plug-in Failure" - tried to uninstall fresh install reinstall and still "Plug-in Failure" HELP PLEASE ?

    The currently available Flash v13 is broken, see this thread:
    https://discussions.apple.com/thread/6074079?tstart=0
    Run the uninstaller as explained above and download an older version:
    http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html

  • SQL INSERT problem - help please

    Hello,
    I'm having a problem with INSERT statement.
    There is a "ShowFinal.jsp" page, which is a list of candidates who selected from the second
    interview. The user picked some candidates from the list and conduct the 3rd interview. After
    he check suitable candidates(who are selected from the 3rd interview) from the list , enter
    basic salary for every selected candidate, enter date of interview and finally submit the form.
    These data should be save into these tables.
    FinalSelect(nicNo,date)
    EmpSalary(nicNo,basicSal)
    In this "ShowFinal.jsp" page, it validates the following conditions using JavaScript.
    1) If the user submit the form without checking at least one checkbox, then the system should be
    display an alert message ("Please select at least one candidate").
    2) If the user submit the form without entering the basic salary of that candidate which was
    checked, then the system should be display an alert message ("Please enter basic salary").
    These are working well. But my problem is how to wrote the "AddNewFinal.jsp" page to save these
    data into the db.
    Here is my code which I have wrote. But it points an error.
    "AddNewFinal.jsp"
    String interviewDate = request.getParameter("date");
    String[] value = request.getParameterValues("ChkNicno");
    String[] bs = request.getParameterValues("basicSal");
    String sql ="INSERT INTO finalselect (nicNo,date) VALUES(?,?)";
    String sql2 ="INSERT INTO EmpSalary (nicNo,basicSal) VALUES(?,?)";
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2 = connection.prepareStatement(sql2);
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1 = connection.prepareStatement(sql);
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    Here is the code for "ShowFinal.jsp".
    <form name="ShowFinal" method="POST" action="AddNewFinal.jsp" onsubmit="return checkEmpty() &&
    ValidateDate();">
    <%--  Loop through the list and print each item --%>
    <%
         int iCounter = 0; //counter for incremental value
         while (igroups.hasNext()) {
              Selection s = (Selection) igroups.next();
              iCounter+=1; //increment
    %>
    <tr>
         <td style="background-color:ivory" noWrap width="20">
         <input type="checkbox" name="<%= "ChkNicno" + iCounter %>"      
    value="<%=s.getNicno()%>"></td>
            <td style="background-color:ivory" noWrap width="39">
                 <%= s.getNicno() %>  </td>
         <td style="background-color:ivory" noWrap width="174">
              <input type="text" name="<%= "basicSal" + iCounter %>" size="10"> </td>
    </tr>
    <%
    %>
    Date of interview<input type="text" name="date" size="17"></td>
    <input type="submit" value="APPROVE CANDIDATE" name="B1" style="border: 1px solid #0000FF">
    </form>........................................................
    Here is the error generated by TOMCAT.
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.AddNewFinal_jsp._jspService(AddNewFinal_jsp.java:70)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
    I have goto the file "AddNewFinal_jsp.java". The line 70 points to the following line.
    for(int i=0; i < value.length; i++){ [/b]
    Please can someone help me to solve this problem? Please help me to do this task.
    Thanks.

    Hi Casabianca ,
    It is clearly that your problem is not on the database end, more like a servlet/jsp issue.
    I will not comment on the javascript portion, but rather the 2 jsps.
    a simple way to trace what's go wrong is to check the final result (the html code) of the first jsp (showFinal.jsp), and compare against what is expected by the 2nd jsp (AddNewFinal.jsp). Most browser do provide "view source" on the page visited.
    the following code
    <input type="checkbox" name="<%= "ChkNicno" + iCounter %>" value="<%=s.getNicno() %>">
    <input type="text" name="<%= "basicSal" + iCounter %>"
    would likely to be "translated" to html code something as follow:
    <input type="checkbox" name=""ChkNicno0" value="nicNo>">
    <input type="text" name="basicSal0">
    the original code in "AddNewFinal.jsp" using
    request.getParameterValues("ChkNicno");
    which looking for a none exist http request parameter (sent as "ChkNicno0",etc but look for "ChkNicno"), which has explained before.
    the second attempt to use String[] value = request.getParameterValues("ChkNicno" + iCounter); give Cannot resolove symbol :iCounter. because iCounter never defined in the 2nd jsp!
    Most of the error message do give clue to cause of error... : )
    not too sure on your intension, assume you wish to update only those selected (checked) row to db.
    some suggestions:
    1) <input type="text" name="ChkNicno" size="10"> </td>...
    <input type="text" name="basicSal" size="10"> instead.
    then use javascript to based on checked element index (refer to javascript spec for more details), for those index not checked, clear off the correspond index "basicSal" field value.
    e.g. ChkNicno[1] is not checked, empty basicSal[1] value before submission.
    This will give us only selected rows values.
    2) retain the code
    String[] value = request.getParameterValues("ChkNicno");
    String[] bs = request.getParameterValues("basicSal");at 2nd jsp, as now the http request will pass parameters using "ChkNicno" and "basicSal".
    3) some change to the code for optimization
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2 = connection.prepareStatement(sql2);
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1 = connection.prepareStatement(sql);
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    to
    pstmt1 = connection.prepareStatement(sql);
    pstmt2 = connection.prepareStatement(sql2);
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    preparestatement created once should be sufficient as we do not change the sql statement throughout the loop.
    there are better solutions out there, this just some ideas and suggestions.Do try out if you wish.
    Hope it helps. : )

  • Was just loading indesign and cannot start it. seem to have no rights for some presets. i deinstalled and installed new, same problem. help!

    was just loading indesign and cannot start it. seem to have no rights for some presets. i deinstalled and installed new, same problem. who can help?

    Not easy if vital information is missing. Sometimes it seems like people are using the internet the first time...
    What version of Indesign?
    What OS? "Rights" sounds like Windows
    What is happening when starting it?
    If Windows, where was it installed?
    If Windows, do you have admin permissions?

  • Iphone and email problems - help please!

    I have a few questions about email on the iphone I wondered if someone could help me with?
    1. If I check my email at home on wifi everything is fine, I can recieve and send emails no problem. If I am outside and using GPRS ( Not found an EDGE signal yet ) I can recieve emails but when I try and send one it tells me it cannot find the outgoing server after trying to send the email for a few minutes.
    2. Sometimes I open my email and its fine but when I go back and try and open an email I have previously read it says "This message has not been dowloaded from the server". How do I get the email to stay there?
    Thanks guys

    See my reply on this post.
    http://discussions.apple.com/message.jspa?messageID=5842248#5842248
    In sort, even once you view it, it will not remain in the Inbox for ever...it will attempt to redownload if accessed later.

  • HT204053 does anyone have this problem we have a second hand phone and have got an apple id account but when we sign in to itunes store it tells us that we havent made a purchase from the store yet and wont sign us in help please

    hi we have recently got an iphone 3gs from a family member and we have set up an apple id account and verified the email but when we try to sign in to itunes store it tells us we havent used the store yet and wont let us sign in please help us with this problem

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • IPod touch 4G deleted settings app and most of my music HELP please

    I have an iPod touch 4G 64GB running on ios 5.  Last night I slid the bar to unlock the screen and the slider stayed locked to the right and the iPod had locked up.  I left it and went to bed.  This morning it opened OK but my settings app has disappeared.  I have looked for it in spotlight search and it doesn't come up and being on my device.  Other weird things happened also.  All my apps had been organised into folders and all my folders have gone and i now have 10 screens of apps.  Also most of my music has gone from the music player.  When I go to browse my music around 90% of it is showing grey in the song list and can't be played.  Around 10% shows black and plays on the device.  This iPod is around 1 year old (christmas present from a year ago) and has never been jailbroken.  Can someone please help because i know that it is impossible to delete any of the default apps but the settings app has gone from the device entirely.

    OK I have solved the problem I had so wanted to post it up here in case anyone else ever has the same problem.  Actually I haven't solved the problem.....the problem was that my iPod removed all of my apps from their folders....the consequence was that i had more than 176 apps which is the most that will fit on the 11 pages apple allow us to have on the device.....so I started putting them back into folders....I would get them down to 3-4 pages then do a reset (holding home and off button etc)....then when the device restarted more apps appeared and my settings was one of them.....I figure that is why it wouldn't show up in spotlight search either....it wasn't that it was hidden rather there wasn't room for it on the device.  Hope this helps others.......and APPLE.....please find out why my iPod removed all my apps frim their folders in the first place.

  • HELP ME PLEASE !!! dynamic pdf with table grows each time it's saved and reopened??? HELP PLEASE !

    Hi, I hope someone can help me. I created a form (dynamic pdf) with Livecycle ES 8.2.
    This document has a table in which rows are added when the user clicks on a button.
    The document in design stage takes up no more than 1/2 an A4. Here are my two problems;
    1. When the document is opened in Reader (9.3) it is all formatted correctly accept the one row, in it's default state (which can be added to by clicking button) is now three rows????
    2. Whether the two extra rows are deleted or filled in or whether more rows are added and filled in, if the document is saved and opened again with reader it has grown to a full page (of empty default rows). If saved again, it grows to 4 pages and so on.
    Can somebody please help me. I can supply a copy of my file if necessary.
    I don't know if this makes a difference, but the document is protected with a password to open in Livecycle and it also has user rights assigned for the user to be able to save a copy on their local machine (not just allowed to fill out and print).
    My email is [email protected]
    Would appreciate any help that can be offered. My document is ready (accept for this issue) for me to use in my job.
    Regards
    Bradd

    Bradd,
    Please forward the form and I can take a look. If you want to forward a version of the form that is not password protected or send the password in a separate email, that is up to you.
    [email protected]
    Steve

  • VIRUS PROBLEMS, HELP PLEASE???

    I continue to have messages popping up saying my computer is infected. It wants me to cleanup and I have to register with Mac Shield 2.6.  Pronograhic websites keep popping up.  Anyone having this problem?  Did not have this problem yesterday, but it's here today!  There is also a Red Sheild on the top of the toolbar where it shows the time, battery life, etc.  Right clicking on the sheild drops down Scan Now, Cleanup, Control Center, Scan, System Info, Settings, About, and Register.  A pron site just popped up again!  Need help Please!!

    Fuony wrote:
    The Mac Shield malware can come through Firefox too if you allow it to and you click on it!
    Your exactly right, it is possible that if you visit a site and need the scripts to run for something that the malware that uses Javascript is on that site, then your going to be presented with it.
    The thing is with the Firefox + NoScript combination defeats alot of the web side trickery the malware authors are using to get the malware to appear in the first place.
    Also this "MacDefender" isn't the only malware making the rounds. There are some serious Flash vulnerabilities being hosted on hostile/adult websites that are running scripts for no apparent reason other than to try to infect your machine.
    By running all scripts all the time, your computer is in a state as if you tried running across a busy highway blindfolded.
    As a lifelong "MacHead" I can understand Apple loyalty, but if Apple isn't cutting the mustard on their browser security, rather place their users security at serious risk for the sake of convenience, then I have to think about using and recommending to others something else that is more secure.
    As a example, I surf thousands of web pages a day, some on really nasty sites, yet I haven't seen this "MacDefender" appear on my computer. Even when I purposely visited links that people have submitted that had the malware. (I maintain a couple of bootable clones of my boot drive just in case)

Maybe you are looking for

  • How to change the header of Material BOM in a program for alternative BOM ?

    Requirement: An Inbound IDOC creates /change/delete Alternative Material BOM. The Alternative Material BOM can have alternative values from 1 to 99. ISSUE: I am good with CREATE and DELETE BOM. The issue is with CHANGE of header Material BOM. The fie

  • Records of ztable from crm to r/3

    Hi all! i'm new on CRM, i need help to replicate records of a custom table on CRM to the same existing table on R/3: can anybody tell me what i must to do?i have to use a replication object??? and can i make the same for records of a standard table??

  • Which audio interface(s) for 16 to 20 analog outputs?

    Hi. I wonder if anyone can help me... I'm running Logic 7.2 on a black MacBook. For my inputs I am using the MOTU 8pre, as this is convenient especially when recording drums with my band... no scrambling together of pre-amps... no faff... The thing i

  • Is it possible to generate receivable statement for a party in the hierarch

    Our TCA data model is setup like this: For a party "A" we have two created two subsidary party "A1" and "A2". Both A1 and A2 are related to A with a relationship in TCA. Each A1 and A2 are linked to seperate accounts and both A1 and A2 have seperate

  • Right align all numbers in table of contents

    One of the entries in my table of contents has the page number right beside the entry. The rest of the page numbers are right aligned. When I "Show Invisibles", an arrow is in the single space between the entry and the page number. For the remaining