Problems linking libocci

I have my applciation with libocci,so distributed by Oracle included in the path.
However the linker does not find many symbols defined.
OCILobAppend, OCIGetCunkSize etc... Most of them have OCI prefix and seem to have been used in the occi code. Should I link any other library. Some of the undefined symbols are in libocijdbc9. Should I also include that.
Note that we have not generated any of these lib files. All came with Oracle 9i distribution.
...kt

I got the same linking problem. My system is IA64, redhat-3, gcc 3.2.3
linking with command:
g++ -o occispatial occispatial.o spatial_classeso.o spatial_classesm.o -L/usr/lib/oracle/10.1.0.2/client/lib/ -locci -lclntsh
and a bunch of errors like:
occispatial.o(.text+0xc2): In function `main':
: undefined reference to `oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode, void*, void* (*)(void*, unsigned long), void* (*)(void*, void*, unsigned long), void (*)(void*, void*))'
occispatial.o(.text+0x922): In function `main':
: undefined reference to `oracle::occi::Number::Number[in-charge]()'
Actually, I try to build demos in /data/app/oracle/OraHome_1/rdbms/demo
for oci. It works, but not for occi.
What am I still missing?

Similar Messages

  • Report problem link opens up word (pc)

    When I click on report problem link in purchase history for an app, all it brings up word. Don't have email receipt yet and itunes support is useless. it's like trying to find a needle in a haystack.

    Click the "contact support" link toward the lower-left of that page and follow the instructions.
    Regards.

  • Cant download PDFs and 'report problem link wont send anything

    All links to PDFs on sites supposedly do a download, but then do not display anything. When I tried to use the Report a Problem link I filled in all the details and then pressed submit but it did nothing - could only go back

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox).
    Or you could see if the second half of Kappy's reply in this thread helps : https://discussions.apple.com/message/20357006#20357006

  • Problems linking Intel MKL in LabWindows

    I would like to use the Intel Math Kernel Libraries (MKL) in LabWindows.  However, I keep getting a linker error (undefined symbol when I try to call an MKL function).  The functions I want are the FFT libraries (DFTI).  I included the "mkl.h" and "mkl_dfti.h" files, and added them to my project as well.  I also tried adding the /Qmkl compiler flag when compiling using the Intel compiler.  This has become really frustrating, I don't know what's not added / included / not being linked.
    Has anyone use the MKL successfully in LabWindows??  What libraries did you add?  Thanks!
    Solved!
    Go to Solution.

    Wow - sorry about the lack of formatting in the previous post.  Here it is again:
    I am working on a 64-bit installation of Win7, but I am making a 32-bit project. I am using LabWindows as an integrated development environment and project builder. I have tried using both its native compiler and the Intel C compiler. In both configuration the linker is LabWindows.
    I am so far still only trying to use one function from the MKL, to test whether I have everything included and linked properly:
    DftiCreateDescriptor()
    I am including the following two header files:
    #include mkl.h
    #include mkl_dfti.h
    I added the following to my include paths:
    c:\Program Files (x86)\Intel\Compiler\11.1\054\
    mkl\ia32\lib
    c:\Program Files (x86)\Intel\Compiler\11.1\054\mkl\ia32\bin
    c:\Program Files (x86)\Intel\Compiler\11.1\054\mkl\include
    I added six .lib's to my project:
    mkl_cdft_core.lib
    mkl_cdft_core_dll.lib
    mkl_core.lib
    mkl_core_dll.lib
    mkl_intel_c.lib
    mkl_intel_c_dll.lib
    I have tried compiling with both LabWindows, and with the Intel C Compiler through the LabWindows external compiler support.  I have tried it with the following flags to the Intel C compiler:
    /Qmkl
    /Qopenmp -I%MKLROOT%/include
    I get the following errors now:
    FFT Test.prj(Release) - 4 link errors
     Undefined symbol '_mkl_dft_commit_descriptor_d_c2c_1d_omp' referenced in "mkl_intel_c.lib".
     Undefined symbol '_mkl_dft_commit_descriptor_d_r2c_1d_omp' referenced in "mkl_intel_c.lib".
     Undefined symbol '___kmpc_begin' referenced in "FFT Test.c".
     Undefined symbol '___kmpc_end' referenced in "FFT Test.c".
    An Intel MKL support person appears to have responded to my NI forums question, but they haven't been particularly useful yet.  The thread is open at:
    http://forums.ni.com/t5/LabWindows-CVI/Problems-linking-Intel-MKL-in-LabWindows/td-p/2210642
    I have a few questions.  First, are these .lib files static libraries, or lists of exported functions for the .dll's?  I think half of them, the ones that don't have "_dll" in their name, may be static libraries and therefore can have unresolved external dependencies (giving the first two linker errors).  Second, how do I add .dll's to a LabWindows project?  I have their directory in my include path (that's the \bin directory or the second include path I listed above).  Is this enough?  Finally, the Intel MKL responder in the forums.ni thread suggests adding a few .lib files to the linker, but I can't figure out how to do this in LabWindows.

  • Problems linking libraries to device

    Hi, I am having a problem linking to a library, but only when I am building for the device. When I build for the device it has problems saying a number of functions that I use, their symbols could not be found. Building for the simulator it works just fine. For fun I removed the library from Xcode and tried to build with the simulator. The simulator then gave me the same error messages. Why can it find the symbols from the library for the Simulator, but not for the Device? I have tried explicitly adding the -dylibMYLIB.dylib to the other linking flags, but this did not work.
    Thanks,
    David

    I have found out that the reason is in my library. The simulator runs on i386 while the actual device will run on armv6. Also the iPhone library needs to be static. See this link for a very good explanation of it all. http://latenitesoft.blogspot.com/2008/10/iphone-programming-tips-building-unix.h tml
    Unfortunately my library fails to compile using these tips, does anybody know of a way to take an existing i386 library and recompile it for armv6? That way I could take the existing library I got from MacPorts and make it work for the iPhone.
    Hope the link helps a little.
    -David

  • I download a rental movie and don't want to finish the downloading  but I Use the report a problem link in your account history...but i didn't get any answer from Apple

    I download a rental movie and don't want to finish the downloading  but I Use the report a problem link in your account history...but i didn't get any answer from Apple

    The posted did what this said:
    How to report an issue with Your iTunes Store purchase
    The link includes the statement:
    "The iTunes Store's Customer Support team will contact you as soon as possible, typically within 24 hours."
    Applelover1 wrote:
    Usually Apple won't respond, instead they will just fix the problem you have suggested if it is a problem that persists in other user's computers. What problem did you report? Did you ask for them to respond?

  • FRUSTRATED - Report a Problem links not working on OSX or iOS

    Apple, youre killing me man. Looong time Apple user here.
    Used to be I could click on a support link anywhere and it would simply, and intuitively take me where I wanted to go. Today, thats not the case.  Not sure whats going on.
    I bought a Fax app and tried to send a few faxes.  Turned out, the quality of the sent fax was terrible, and unreadible by the recipient (even after three attempts, and three different types (jpg, pdf, etc). I simply want a refund since the product didnt live up to its advertised capability.
    I went to my email receipt, found the three .99 fax purchases and clicked on "Report a Problem"...hoping for an easy solution.  Nope...instead it too me to the iTunes download page. Great. Thanks Apple, I already have iTunes.
    So then I thought I would just go to my iPad or iPhone and click on the same link.  Once I clicked on it "Cannot Connec to iTunes Store". 
    My attempts to find a solution on these forums has been fruitless. I feel like im back in the days of trying to find anything on Microsofts site...just a never ending loop of redirects.
    Also, even when using the contact iTunes support links and typing in "refund app purchase", I get a return of "This is the most effective solution for your product and topic. Select how you want to proceed." 
    "Apple ID: Tips for protecting the security of your account"
    Then, when I click on the Email icon for "More Options", even THAT link doesnt work. 
    So here I sit. If anyone has cracked this code please pass it on.
    Thanks,
    David

    You could try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that app and use the 'Report a Problem' link.
    If that also doesn't work then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • Sensor Battery Died- Problem Linking Replacement Sensor

    I had a great experience with my NikePlus sensor the first time around. The training program option on nikeplus.com has been great to keep me motivated, and so far I have lost 30 pounds! Then the sensor battery died...
    I have gotten a new sensor and receiver for my 3rd generation ipod, but it is having problems linking with the sensor. I use a velco pack on the laces rather than spend the money on the Nike+ shoes and it wasn't a problem with the first sensor. The set up is still the same, but now the replacement sensor isn't reading properly. The replacement sensor is linked to the nano, but the pace zeros out. As an example, today I ran 2.5 miles and it only read .07 miles since the pace was 0.00 the majority of the time.
    I want to get back on track, but can't figure out how to fix this. Is anyone else having this problem? I'm not sure if it is related to my nano being linked to another (my original) sensor, or if it is just a bad sensor.
    Help!

    My wife had the same problem with her Nano 3rd Gen iPod and Nike Sensor. She is using a pair of Nike shoes with the sensor pocket (not the most comfortable shoes, ... but that's another story). The battery died on the sensor after 3 months of fairly regular use. We took the sensor in to the Apple Store and they were kind enough to provide her with a replacement free of charge.
    We got back home and the new sensor will not sync with the receiver/iPod. I am OK with buying a $19 sensor (OK, but not at all thrilled) every 3-6 months if it provides the type of enthusiasm and incentive to workout that my wife has enjoyed. But to have to purchase the sensor and the receiver every 2-3 months is a joke.
    With the great minds at both Nike and Apple, they should be able to provide a sustainable product with a replaceable battery with more consistent life. I have read many reviews and the battery on the sensor lasts anywhere from 2 months to 14 months. That is a horrible variation in performance for a high tech piece of electronics.
    If you are close to an Apple Store, I would return the sensor and demand a free replacement. Perhaps when Apple gets a thousands of the sensors piling up in their storerooms they will increase the reliability.

  • REPORT A PROBLEM link does not work

    I received an email with an invoice for a purchase of 5 apps that I DID NOT PURCHASE. IT'S ALL IN CHINESE AND I DON'T EVEN KNOW HOW TO READ CHINESE. After following a tutorial on how to report a problem, i clicked on that link 'report a problem' next to the apps the thief purchased BUT IT BOUNCES ME BACK TO THE ITUNES SUPPORT PAGE. Unlike the tutorial, it did not bounce me to the 'select your problem' page. I want to report this problem so that I may get a refund on those apps i did not buy ( and do not even have on my ipod! ). Please help me.

    I can confirm that report a problem sends me nowhere when I click it. Funny how when it comes to reporting that it doesn't work

  • Problem linking A/R invoice table INV1 and Credit memo table RIN1

    Hi Experts,
    I have developed a sales report by picking data from the A/R invoice table INV1, BP partner table OCRD and Charts of accounts table OACT and the report is working fine. The only problem is I am having a challenge linking the above tables with the A/R Credit memo table RIN1. I want the linkage that is in case an A/R invoice is cancelled by raising an A/R credit memo, the same is not reflected on the sales report, kindly help.
    Patrick

    Hi Gordon,
    Sorry, I did both the report and relationships in crystal but if I do a query in a view it is something like
    SELECT     dbo.OACT.AcctCode, dbo.OACT.AcctName, dbo.INV1.ItemCode, dbo.INV1.Dscription, OCRD_1.CardCode, OCRD_1.CardName
    FROM         dbo.OCRD CROSS JOIN
                          dbo.OACT INNER JOIN
                          dbo.INV1 ON dbo.OACT.AcctCode = dbo.INV1.AcctCode INNER JOIN
                          dbo.OCRD AS OCRD_1 ON dbo.INV1.BaseCard = OCRD_1.CardCode
    the problem is incorporating the credit memo table coz if i include it I end up with wrong figures, hope this will help you guide.
    Patrick

  • Problem linked wrong Facebook account to student discount, how do I change it

    I have two facebook accounts - one for business and one personnel, and by accident I have linked the wrong one to my student NUS extra account - how can I change it?
    Sounds simple enough and on the sale of goods act UK I should be able to do it, but I forgot the problem with spotify is that there is is no-one to talk to, and though I looked at a solution on spotify it does not work on my mac.
     

    Hi samhelene97, I was given the advice below by Peter, which ultimately worked.  Re: [Windows7] Spotify premium on wrong account [ New ]Options ‎05-11-2013 10:19 AMHey @mattiasskroder ! Welcome to the community :) 
    If you could get in touch with the customer services team directly using the online contact form they can get that swapped over for you.
    If you get an automated email reply back directing you to the community or help pages, you need to reply directly to that email (even if its from no-reply) and one of the customer services agents will get back to you as soon as possible.
    Peter Peter
    Spotify Community Yoda and Bug Whisperer

  • Problems linking to Word document

    I wrote this as a reply to a similar post last week but I'm
    afraid it got buried in the thread...part of Rick's response to
    that poster was: "2. If you are linking to Word or .PDF documents,
    there is a slight chance you will find the link actually fails for
    some reason. Yet, if you simply place focus in the address bar of
    your browser and press Enter to refresh, the document loads right
    up. Go figure. If that begins happening, let us know and there is a
    possible workaround for you."
    That is the problem I'm having--can you share the workaround
    you mention? It happens most--but not all--of the time, and only
    with the Word documents; my PDFs and web links open with no
    problem. The documents are housed on a public website. I am using
    Captivate 3 if that matters.
    Thank you for any help you can offer!
    Julie

    Hi Julie
    Here's how it's done.
    From inside Captivate 3, click File > Record/Create >
    MenuBuilder Project.
    Choose the Blank Project type and click OK.
    Click Options > Project Options...
    Configure the width and height to the smallest possible
    values. This will be 320 wide and 200 tall.
    Click OK.
    Click Insert > Clickbox.
    Type the file name of the Word document or PDF and ensure you
    click to place a check mark in the "Save file with project" check
    box.
    Click OK and you should see a dialog asking if you want to
    browse for the file. Click No.
    Size the Clickbox so it covers the entire project area.
    Click File > Export.
    Save the project using any name you like. I frequently do
    this and just use "Untitled" as that's what it suggests.
    Choose Flash Movie as the type of project and click Next
    >.
    Type a name to identify the .SWF and choose an easy to
    remember location. I often use the Desktop.
    Click Finish.
    Close MenuBuilder. You are finished with that (unless you
    wish to create more of these)
    In Captivate on the slide where you want the user to click to
    open the document or PDF, click Insert > Animation.
    Browse to the location where you exported the Menubuilder
    file and select it.
    What you are doing is creating a MenuBuilder output to drop
    into a Captivate project to open files. I'm not sure why or how
    it's different than the way Captivate works, but different it is.
    Hopefully this helps you out... Rick

  • How do I get refund for App not performing well? Report problem link takes me to these discussion boards

    I downloaded this App for ringtones (Ringtones 500.000) , purchased a full version of it, so I should be able to download unlimited number of ringtones. The problem is, it won't let me download any ringtones after 10, which is how free version of this App performs.
    I have contacted developers, but they keep sending the instruction book to me with step-by-step inforamtion, which is out of date itself, but that is not a problem, I think in my case.
    When I try to report a problem to Apple , using hte link on my receipt, it just takes me to a page with discussion boards and FAQ.
    I would like to get $1.99 back instead of troubleshoot this any longer, because it seems App help support people are not understanding the problem.
    I did try re-loading the App -didn't help either.
    Thank you!

    Welcome to the Apple Community.
    Apple's policy on sales of digital content is that all sales are final. If however you wish to appeal to Apple, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.
    Currently, if your purchase happens to be your most recent purchase you will not be redirected to the report form, in this case use the report a problem option from the invoice that was emailed to you.

  • IE9 problem linking to a specific tab

    I have been happy with my website for almost a year now after asking a few questions relating to Tabbed panels and having my problems solved here.
    But I've realised there is a problem that didin't exist before!
    I have a Horizontal menu bar at the top of some of my pages and there are links that go to different pages with a tabbed panel with a specific tab opened.
    However, when I click on these links, the pages open with the specific tabs opened, BUT the Horizontal menu bar which should be at the top disappears.
    The banners at the top left corner disappears too and the whole tab panel is displayed at the top.(so the Tabbed panels are kind of pushing the content at the top out of the screen)  When I check the html in Dreamweaver, in Live view, and try to use the link in the menu bar, it shows the same, the Tabbed panel at the top of the page with the specific tab opened.  But it shows that it can be scrolled up and when I do, it shows the banners and the Horizontal menu bar.
    This hasn't been happening before when I've made the website last year.  I'm thinking that it's something to do with IE9 because I was using IE8 when I've made the website and Safari seems to work the same as before.  Does anyone know what I could do?
    My website is http://minussun.co.uk/home.html
    If you could try jumping to "The Concept", "Her Record" or "Her Life" in the About menu or "Her" or "Stockists" in the Contact menu at the top (basically, the links which are aiming at specific tabs) you will see what I'm writing about...

    Hello, thank you for checking out.
    I'm using windows vista 32bit and never thought that the os matters as well.
    It's good to know that it works in the up to date os/browser environment.

  • Problem linking a video clip to a 3D element in After effects

    Good morning
    In the following picture from my project I want to link the fire to the basin in front of the statue. The camera pans up when approaching the statue and at this moment my fire flies up!!!
    The temple is a unique group I built in Element 3D . The fire consists of three layers of a clip from Videocopilot action essentials 2.
    At first I thought of tracking the clip or the temple, but for the clip it's impossible as its background is black and Mocha doesn't load the Temple Element layer. AE gives me the only Mocha tracker as an option for tracking here but doesn't seem to recognize the 3D group element.
    I thought of creating a group null in Element 3D but I can't find the resulting null in the workspace...It's lost somewhere into space!
    So I must be very dumb but I do not see how to solve my problem. I've checked different tutorials and experienced some of the proposed solutions without success.
    Could anyone suggest a solution or explain me which of the above could do and how?
    Thanks in advance
    Claude

    If you want to track multiple layers or layers with an effect you must first pre-compose them. If you want to use Mocha then you have to Pre-render them. If you have a camera move you can use expressions to analyze the move but since we know very little about your composition I can't begin to suggest what you should be doing. Here's how to easily tell us all about your comp. Select all of the layers in the time line that are important to the shot. Press the "u" key twice. This will reveal all modified properties. If an effect is applied to a layer that may be causing problems then make sure the Effects Control Panel is visible for that layer or layers. Now take a screenshot. If you need to reduce the size of your Composition Panel to 50% or even 25% to fit things in do that. Now drag the screenshot to the Reply field on this forum and describe in detail what you are trying to do.

Maybe you are looking for