Can't Create Statement Object - Help

Hi:
I'm using NetBeans 5.0
which is pointing at:
Java\jdk1.5.0_07
The IDE can't see the Statement object:
'cannot find symbol Statement'.
It won't compile.
I've included: import java.* at the top of the file.
It's not having a problem creating the connection object, just the Statement object.
Can you tell me what I'm missing or what I need to make the IDE 'see' the Statement type?
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
oCn = java.sql.DriverManager.getConnection(getConnectionUrl), userName,password);
Statement stmt = oCn.createStatement(); //<<-- IDE cant' see this

Never mind. I figured it out:
import java.sql.
In general, these forums are GREAT!!
Thanks very much for all the answers you 've given me.
You're better than ANY support team:o)

Similar Messages

  • How can I create a object for a note?

    Hi experts,
        I need to apply the note 501905 but when I try in the SNOTE transacction I receive this error:
    Object REPS Z_MRM_DELETE_PP does not exist; create it
    Diagnosis
    The SAP Note that you want to implement contains changes to an object that does not yet exist in your system.
    SAP Notes contain only changes to objects that already exist. This means that the the system cannot automatically create new objects during the implementation of this SAP Note.
    Procedure
    1. Cancel the SAP Note implementationl.
    2. Create an empty object REPS Z_MRM_DELETE_PP with the corresponding object editor.
    3. Restart the SAP Note implementation.
    How can I create that Object??
    Thanks for the help!

    Hi Carlos,
    It says that you have to create a new program with a name Z_MRM_DELETE_PP.
    Once you create and activate the program you can execute the SAP Note.
    All this processure will be written in the SAP Note.
    Please Go through the Note using below:
    Step1: Use T.code SNOTE.
    Step2: Use menu GOTO --> NOTE BROWSER. Provide the Note no and EXECUTE.
    Step3: Double click on the displayed line.
    Here you will get the information to do before implementing the note.
    Go through all the documentation, and once you did all the development given in the note then you can implement the note.
    Regards,
    Sreekanth.

  • Java.sql.SQLException: can't create statement from closed connection

    java.sql.SQLException: can't create statement from closed connection.
    at com.caucho.sql.QPooledConnectionImpl.prepareStatement(QPooledConnecti onImpl.java:411)
    I am getting this error with my JSP's, i am running on Resin on Win2k, and MySql as backend.
    Has anyone else also faced this issue ?
    Looking for someone to help me to solve this issue.
    rc

    Looking for someone to help me to solve this issue.Maybe you are closing the connections. You might want to verify that you are not doing that. Or if you are that that is the correct way to return the connection to the pool.
    Or you could have stale connections. Some databases will time out connections if the connection is no used in a while. (This is a good thing.) But this means connection pools must do something with connections that are not used for a while. The pools usually have a configuration option(s) which allows you to set up a keep alive message which keeps the database from closing the connection.

  • Run-time error '429':Active X component can not create an object

    Hi Folks,
    I am using some VBA code to run logic in BPC for Excel. When i try to click on VBA button, It's giving the below error.However when i am trying to execute same from server it is working fine. Accessing from BPC client only we are facing this problem.
    Code have no issues. Is there any specific thing need to mentioned in client when we use VBA programming? Basically we used the VBA program to create the id's in BPC for Excel. So that it will automatically created on fly. Testing was fine interms of working in Server.
    " Run-time error '429':Active X component can not create an object ."

    Hi,
    Are you trying to add a member into the dimension from excel? As you said that this has been already tested in the server and is working fine, I believe, you have taken care of everything.
    Now, coming to the point, when you are adding a member in the membersheet, you need to process the dimension. This requires the admin rights. So, please check the task profile of the user ID, with which you are trying from your system. This user ID should be the primary admin.
    Hope this helps.
    Additionally, can you please elaborate on the steps on what you followed for adding a member from the excel directly?

  • Error run-time 429 ActiveX can't create the object Financial Reporting

    Hi everybody,
    I'm trying to run Financial Reporting 9.3.1 on my pc with Winodws Vista but as I launch the exe it shows me an error message:
    Error run-time 429 ActiveX can't create the object
    I know it works out with XP. Is there a problem with Vista? How can I fix it?
    Thanks in advance
    Giacomo

    I cannot say this IS your problem, but some oddities I ran into installing the report client on my laptop in my current environment ....
    #1 - Even though you type in your username and password in the Reports login box, it apparently uses the credentials of the logged on user.
    #2 - The machine MUST be on the domain that is used for authentication or it flat out won't work (see item #1)
    #3 - I ran into the ActiveX error once and apparently something did not register properly during the install. To fix it :
    Run the batch file : %HYPERION_HOME%\BIPlus\install\bin\HRRunAnt.cmd
    Where %HYPERION_HOME% is the main hyperion folder. (i.e. c:\hyperion )
    After the script executes, reboot your machine. You MUST reboot.
    Hope that helps.

  • ActiveX can´t create the object xl reporter

    hola tengo SAP BO 2005
    con el xl reporter ahora que lo quiero correr me aparece el error de que el ActiveX can´t create the object
    probe reinstalando todo y nada, asi como cambiando el dll de los lenguajes
    alguna otra sugerencia
    gracias

    Estimado Salvador,
    Gracias por remitir su inquietud al soporte de SAP B1 en español.
    Inicialmente le pedimos verifique que esta utilizando una versión soportada de Microsoft Office. Tal y como se documenta en el Service Market Place:
    https://service.sap.com/smb/sbo/platforms                   
    Si cuenta con alguna de las versiones soportadas, verifique lo siguiente :                                                                               
    El mensaje de error podria estar relacionado a el DI API. Favor aplicar los siguientes pasos:
    1.  Ubicar el archivo '"temp" por medio de  Start -> Run , tipear  %temp%.    
    2.  Ubicar la carpeta  SM_OBS_DLL folder y borrarla.                  
    3.  Desde añadir/remover programas, desinstalar el DI API.                      
    4.  Reiniciar el PC.                                                      
    5.  Instalar el  DI API desde la carpeta del parche en uso (en la carpeta "packages")   
    Esperando lo anterior les permita solventar lo reportado.
    Queda a sus gratas ordenes,
    Juan Manuel Marrero
    SAP Business One Forums  Team

  • Can I create the object of an protected inner class of a Base class in to t

    Dear All,
    Can I create the object of an protected inner class of a Base class in to the subclass ?
    e.g.
    public class Base{
         protected class Inner {};
    Public class Sub extends Base{
         Public Inner amethod (){
              Return new Inner(); //here I get an exception as
                                //Inner has protected access
    }Regards,
    Ishan

    @Op. The code that you posted isn't close to compiling. Java is case sensitive. It should be public and not Public, and return instead of Return.
    Kaj

  • How can I create a Java help file (*.hs)?

    How can I create a Java help file (*.hs)?

    Thanks a lot.
    I know it is rather poorly used, but I still need it for our current software
    Mit freundlichen Grüßen / With best regards
    Hans-Jürgen Hengsbach - Produktmanagement / Product Management (-227)
    Von: Peter Grainge [email protected]
    Gesendet: Dienstag, 29. April 2014 16:48
    An: Hengsbach.Hans-Juergen
    Betreff: How can I create a Java help file (*.hs)?
    Re: How can I create a Java help file (*.hs)?
    created by Peter Grainge <http://forums.adobe.com/people/Peter+Grainge>  in RoboHelp - View the full discussion <http://forums.adobe.com/message/6340535#6340535

  • Can you create an object from a string

    I have been working on creating a dynamic form, creating the
    form items from an xml file. I am getting very close to conquering
    this task. I will share it when it's complete.
    However, I am stuck at the moment trying to create an object
    from a string. For example, if the xml item is an HBox I want to
    create an HBox. Like this: parentObject = new arrayOfFormItems[
    index ]..type ()
    This isn't working. First, is this possible using some syntax
    I am unaware of in Flex? I don't want to use a large if or case
    statement if possible.
    Thanks in advance for your help!

    Thank you very much. Indeed that did solve the one problem. I
    missed the casting as a Display Object. That is awesome!
    I do still however, have to instantiate one of every item I
    want to dynamically create or I get the following error when I try
    to create a dynamic object that I have not instantiated before.
    ReferenceError: Error #1065: Variable HBox is not defined.
    at global/flash.utils::getDefinitionByName()
    at MyForm/buildForm()
    at DynamicForm/::onComplete()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    I read that you have no choice but to instantiate one of each
    type to force the linker to link the code for that class into the
    .swf. Unless you know another way to force it.
    This is what I have in my Application mxml to get it to work:
    <mx:HBox>
    <mx:Text visible="false"/>
    <mx:TextArea visible="false"/>
    <mx:TextInput visible="false"/>
    <mx:DateField visible="false"/>
    </mx:HBox>
    And those are the types I'm using to test with. . . I will
    have to add all the others I want to use as well . . .

  • Can not create an object for my c# form dll which has an ActiveX control

    I want to create an object in teststand for my C# form dll which has an ActiveX Control . but the error says ActiveX control can not be instantiated because the current thread is not in a single-threaded apartment. can someone help to solve the problem?
    Thanks.

    Two options:
    1) put the step in a subsequence and use the sequence call "New thread" option with the advanced setting "Use single-threaded Apartment". Put a wait step immediately after the sequence call to wait for the new thread.
    2) Inside of your dll, using .NET APIs create a new thread initialized as STA and call your code from that. Have the original thread wait for the new thread to finish running your dialog code.
    Hope this helps,
    -Doug

  • Can we create a object for servlet

    and can we use constructor inside a servlet .If yes at what situations we can use

    Servlet is an object. Not sure what you need. You can create objects inside a Servlet, or any Java class...
    and can we use constructor inside a servlet.Sure, but most people don't because Servlets are container managed (i.e. you don't instantiate it)
    If yes
    at what situations we can useNot sure what you are asking here, but you can instantiate the servlet anywhere.

  • Can we create custom objects in WebI 4.0 BICS connectivity in BI 4.0 ?

    Hi All,
    I am using BI 4.0 and would like to know if we can create custom objects(measures or dimensions) in WebI 4.0 using the BICS connectivity with SAP BW BEx Queries?
    Rohit

    Hi,
    No, I'm afraid that's not possible with the BICS 'transient universe' (because you cannot edit the BW OLAP business layer  in IDT)
    Sure - in XI3.1, SAP Integration Kit,   OLAP .unv universes,  it was possible to do custom objects  with  MDX and XML tags.
    Infact, the UDT is still available in BI 4.0
    Regards,
    Henry

  • Why can't created an object in the "public static void main(String args[])"

    Example:
    public Class Exp {
    public static void main(String args[])
    new Exp2();-------------> To Occur Error
    Class Exp2 {
    public Exp2()

    You can't create an inner class within main, because
    it is a static method. Inner classes can only be
    created by true class methods.This is not correct. You can create an inner class object in a static method. You just have to specify an outer class object that the inner class object should be created within:
    Exp2 exp2 = new Exp().new Exp2();

  • Can we create entity object based on a text file on the OS?

    I understand you can interface with files using webDAV. Can we just create a entity object with source to a text/xml file on the OS instead of a table?

    Have a look at the URL data source (under new->business tier->web services) - it allows you to create a data control based on an XML or csv file.
    http://technology.amis.nl/blog/?p=1592
    You can also create a data control based on a Java class that interact with a file.

  • Can't create Zen objects with Zen 4.01B

    I removed my Zen 4.01B install from my server, deleted all the objects and
    directories on my Netware 5.1 sp7 server running Edir 8.7.3.7.
    I have reinstalled Zen from my 4.01B patch download, as a new install.
    I can create all my objects except for 3, at least so far.
    can't create the following, ZenInvService ZendmwolService
    ZenimagingService.
    It gives me "There is not a snap-in to create this type of object." error.
    I have downloaded the IR7 C1 snapin download and applied it to my local
    copy of Console1 running 1.3.6.e.
    Do I have to install from my original CD of 4.0.1 then apply the B patch,
    or is it something else?

    > You are not running E-Dir 8.8 on this box are you?
    > This does not support ZEN before ZFD7SP1.
    >
    > While I dont think they are supported on NW6.x, I believe folks have
    > gotten them working.
    >
    > Sorry nobody has a good answer yet.
    >
    > [email protected] wrote:
    > >> I removed my Zen 4.01B install from my server, deleted all the
    objects
    > > and
    > >> directories on my Netware 5.1 sp7 server running Edir 8.7.3.7.
    > >> I have reinstalled Zen from my 4.01B patch download, as a new install.
    > >> I can create all my objects except for 3, at least so far.
    > >> can't create the following, ZenInvService ZendmwolService
    > >> ZenimagingService.
    > >> It gives me "There is not a snap-in to create this type of object."
    > > error.
    > >> I have downloaded the IR7 C1 snapin download and applied it to my
    local
    > >> copy of Console1 running 1.3.6.e.
    > >>
    > >> Do I have to install from my original CD of 4.0.1 then apply the B
    > > patch,
    > >> or is it something else?
    > >>
    > > May have answered my own question. I am actually installing Zen 4.01B
    on a
    > > different server this time, it is running Netware 6.5 Sp5. As I recall
    > > Inventory and the Import service do not work on Zen 4.01B when you
    install
    > > it on Netware 6.5.
    > > Would you agree?
    > >
    > >
    >
    >
    > --
    > Craig Wilson
    > Novell Product Support Forum Sysop
    > Master CNE, MCSE 2003, CCN
    Well, for whatever reason we reinstalled our Novell licensed download and
    reinstalled Zen and our licenses and everything works.

Maybe you are looking for