JDBC driver 10.2.0.1.0XE & XE - bag with Locale other then ENGLISH locale

=============
Lets test java class code:
import java.util.*;
import java.sql.*;
import oracle.jdbc.*;
import oracle.jdbc.pool.OracleDataSource;
public class TestDriver {
public static void main(String[] args) throws SQLException {
//deadly force: Locale.setDefault(Locale.ENGLISH);
// but my Locale is RU!
// see NLS_CHARACTERSET- WE8MSWIN1252 must be WE8MSWIN1251!
OracleDataSource ods = new OracleDataSource();
ods.setURL("jdbc:oracle:thin:system/123@localhost:1521/xe");
Connection conn = ods.getConnection();
DatabaseMetaData meta = conn.getMetaData();
System.out.println("JDBC driver version is " + meta.getDriverVersion());
==========
Output result:
Exception in thread "main" java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
ORA-12705: Cannot access NLS data files or invalid environment specified
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:145)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:283)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:278)
at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:785)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:376)
at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:441)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:839)
at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:389)
at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:278)
at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:199)
at Oracle.Test.TestDriver.main(TestDriver.java:27)
=================================================================
Database info:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
National Language Support
National Language Parametersort by this column Value
NLS_CALENDAR GREGORIAN
NLS_CHARACTERSET WE8MSWIN1252
NLS_COMP BINARY
NLS_CURRENCY ?.
NLS_DATE_FORMAT DD.MM.RR
NLS_DATE_LANGUAGE RUSSIAN
NLS_DUAL_CURRENCY ?.
NLS_ISO_CURRENCY RUSSIA
NLS_LANGUAGE RUSSIAN
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CHARACTERSET AL16UTF16
NLS_NCHAR_CONV_EXCP FALSE
NLS_NUMERIC_CHARACTERS ,
NLS_SORT RUSSIAN
NLS_TERRITORY RUSSIA
NLS_TIME_FORMAT HH24:MI:SSXFF
NLS_TIMESTAMP_FORMAT DD.MM.RR HH24:MI:SSXFF
NLS_TIMESTAMP_TZ_FORMAT DD.MM.RR HH24:MI:SSXFF TZR
NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR

Right. I have diagnosed the issue. It is caused by the removal of the "CIS"
territory from Oracle Database XE. I have logged bug #5114250.
If you have access to the applicaction source code, try the following workaround:
boolean workaround = false;
Locale origLocale = Locale.getDefault();
if ( origLocale.toString().equals( "ru_RU" ) ) {
Locale.setDefault( new Locale( "en", "US" ) );
workaround = true;
DriverManager.registerDriver( new OracleDriver() );
Connection conn = DriverManager.getConnection(
"jdbc:oracle:thin:system/manager@//localhost:1522/ORA92.PL.ORACLE.COM"
System.out.println( "Connected." );
if ( workaround ) {
Statement stmt = conn.createStatement();
String territory = "CIS";
if ( conn.getMetaData().getDatabaseMajorVersion() >= 10 )
territory = "RUSSIA";
stmt.execute(
"ALTER SESSION SET NLS_LANGUAGE='RUSSIAN' NLS_TERRITORY='"
+ territory +"'" );
stmt.close();
System.out.println( "NLS_TERRITORY changed to " + territory );
Locale.setDefault( origLocale );
-- Sergiusz

Similar Messages

  • Jdbc driver for oracle8i(8.1.5) on Linux with JDK1.2.2

    I am looking for a JDBC Driver.
    Does anybody know where I can get it?
    Thanks in advance.
    null

    Java Development Quote:
    You can download the JDK 1.2 version of the 8.1.6 Thin driver from this site. It is 100% Pure Java and will run on Linux.
    As you replied, I downloaded 8.1.6 Thin driver(classes12.zip) and installed it in the Linux server where Oracle 8.1.5 resides at.
    I wrote a test program, and it compiled without errors. But when I excuted it, I get the error message below:
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNU
    M=135286784)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    Below is the test program I used:
    import java.sql.*;
    import oracle.jdbc.driver.*;
    public class Test
    public static void main (String args [])throws SQLException
    //DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    try{
    Class.forName("oracle.jdbc.driver.OracleDriver");
    catch(ClassNotFoundException e){
    System.out.println("Cannot load the Driver");
    Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@207.207.148.132:1521:DR_DEV","crunchy", "imcrunchy");
    // Create a Statement
    Statement stmt = conn.createStatement ();
    // Select the ENAME column from the EMP table
    ResultSet rset = stmt.executeQuery ("select sysdate from dual");
    // Iterate through the result and print the employee names
    while (rset.next ())
    System.out.println (rset.getString (1));
    I'd appreciate if you give me some insight.

  • JDBC Driver problem when using JDeveloper 10.1.2 with JDK 1.4

    I hope someone can help me solve this problem (which I am sure others have encountered).
    The JDK that is downloaded together with JDeveloper 10.1.2 is JDK 1.4.2. However, I believe the JDBC jar files that comes together with JDeveloper 10.1.2 are for JDK 1.2 : classes12.jar, classes12dms.jar and nls_charset12.
    What I did was I replaced the JDeveloper 10.1.2 JDBC (JDK 1.2) jar files with the JDBC jar files from JDeveloper 10.1.3 download i.e. ocrs12.jar, ojdbc14.jar, ojdbc14dms.jar and orai18n.jar and then create a new JDBC Library which references these new jar files. I was able to successfully run my applications (under my modified JDeveloper 10.1.2) using this new JDBC library (instead of the original 'Oracle JDBC' library). However, when I created a Database Connection in this modified JDeveloper 10.1.2, the connection was unsuccessful. I received the error message "Unable to find driver: oracle.jdbc.driver.OracleDriver".
    My organisation requires me to use JDK 1.4.2 and therefore I cannot use JDeveloper 10.1.3 (which I did not encounter any JDBC problem) as it is certified to run only on JDK 1.5.
    Please help. Thanks.

    JDev 10.1.2 is quite old, and was never certified for Windows 2008.
    No need to post multiple threads - same question as {thread:id=2271522}

  • How do i connect my hard drive to the air port and share it with my computers on my local network and internet.

    im having trouble seeing my hard drive. please help

    Have you verified that.....
    The drive is formatted in Mac OS Extended (Journaled)?  Most drives are pre-formatted for Windows NTFS, whcih will not work with the AirPort Extreme
    The USB port on the AirPort Extreme is under powered, so if your drive is formatted for Mac as above, you almost always need to use a powered USB hub....even if the hard drive has its own power supply

  • Drive letters and Volume label - How to associate with each other so i do not have to find my library everytime i move my external drive between my PC and MacBook Pro.

    Hi, i'm having issues within the folders area of the library module.
    My setup is the following. My home PC has Windows 8.1. My work laptop is a 17" MacBook Pro. The library file as well as the smart previews are all located on a dropbox drive.
    My issue is that when i would like to sync changes with the original files located on a 3TB external drive i share with both the PC and Mac, the drive name changes due to Windows using a Drive letter and OSX using a Volume Label. Is there a way to associate; for example H:  drive under the folders section with the External Drives Volume label so that i do not have to locate the missing files everytime i wish to synchronise?
    Any help in the matter would be greatly appreciated as i have switched from Aperture so i can edit my photos easily on both my Home PC and my Laptop.

    Nope. You can't change operating system mechanics. They simply work differently. For such a scenario in fact a NAS connected via network interface would be more suitable and avoid the issue...
    Mylenium

  • Oracle 8.1.5 - jdbc driver problem

    I am using Oracle8.1.5 (personal oracle) for database. I am trying to retrieve the data from JAVA(JDK 1.3). I use the following driver and its manager in the Java program:-
    DriverManager.registerDriver(new Oracle.jdbc.driver.OracleDriver());
    Class.forName("Oracle.jdbc.driver.OracleDriver");
    However Java is not getting compiled with the following error message:-
    Cannot resolve symbol:
    package: driver
    class: DriverManager
    I would request your goodselves to help me out. Thank you in anticipation.
    Regards,
    Sivaswamy

    Thanks for the reply.
    Have you tried manually taking the current time and
    converting it to the way Oracle is expecting it? If I embed a TO_DATE and format it, it works fine, but I want to stay database independent. Is that want you mean?
    Or how about using new java.util.Date() to get the
    current date?Not sure I follow you:
    --- insertStmt.setTimestamp(5, new java.sql.Date(System.currentTimeMillis()));
    Gives an error since setTimestamp expects a java.sql.Timestamp and
    --- insertStmt.setDate(5, new java.sql.Date(System.currentTimeMillis()));
    Only stores the date without the time.
    Thanks again,
    Todd

  • JDBC driver patch for JDBC driver 8.1.7 on NT to connect 9i db

    The patch number 1725012 related to JDBC driver patch for 8.1.7
    for use with JDK 1.2.x/1.1.x to connect to a oracle 9i database
    now shows patch support for six items but the NT operating
    system is missing in the list. Do we need to wait for the NT
    support patch release..? or any other work around to address
    this bug in the mean time for testing in NT OS.
    The JDBC error thrown is
    ORA-00600: internal error code, arguments: [ttcgcshnd-1],[0]...

    You must include "classes12.zip" instead of "classes111.zip".
    Since "classes111.zip" is required only for Java 1
    and "classes12.zip" is required for Java 2 which means from J2SE 1.2 on forward.
    In adition you might need to inlcude "nls_charset12.zip" as well. Try it first without and if it is not working include it as well.
    The required files can you get from the OTN.
    This should help
    Roger

  • [Sybase JDBC Driver]Object has been closed

    Hi,
    I am getting the following error when accessing a datasource in an EJB on Weblogic using the Data Direct Drivers.
    java.sql.SQLException: [DataDirect][Sybase JDBC Driver]Object has been closed.
    The code works every other time. the first time through it works the second time I get the error.
    Any insite would be appricated.
    Here is my code
    public String test(String id)
    System.out.println ("test1");
    DataSource ds = null;
    Connection conn = null;
    PreparedStatement stmt = null;
    PreparedStatement stmt2 = null;
    String ret = "?????";
    try
    System.out.println ("read data - prepare");
    InitialContext ic = new InitialContext();
    ds = (DataSource)ic.lookup("java:comp/env/jdbc/dataconn");
    conn = ds.getConnection();
    String sql = "SELECT * FROM myTable WHERE ID = ?";
    System.out.println ("read data - conn.prepareStatement(sql);");
    stmt = conn.prepareStatement(sql);
    stmt.setString(1, id);
    // stmt.setMaxRows(1000);
    System.out.println ("read data - stmt.executeQuery();");
    ResultSet rs = stmt.executeQuery();
    System.out.println ("read data - read");
    if(!rs.next())
    ret = "Not found";
    else
    ret = "found";
    sql = "UPDATE myTable SET column1 = column1 + 1 WHERE ID = ?";
    System.out.println ("update data - prepare");
    stmt2 = conn.prepareStatement(sql);
    stmt2.setString(1, id);
    ret = ret + stmt2.executeUpdate();
    System.out.println ("update data - update");
    catch(Exception e)
    e.printStackTrace();
    finally
    try
    stmt.close();
    catch(Exception exception1) { }
    try
    stmt2.close();
    catch(Exception exception1) { }
    try
    conn.close();
    catch(Exception exception1) { }
    stmt = null;
    stmt2 = null;
    conn = null;
    return ret;
    }

    Hi. What version of weblogic, and can you print the whole stacktrace?
    That way I'll know which object is already closed. This hints at an
    already-fixed bug, but I'm not sure yet... And tell me what happens
    if you close your result set after you do your call to next(). Lastly,
    you can save some DBMS traffic if you change the query to:
    "SELECT 1 FROM myTable WHERE ID = ?"
    Then regardless of how wide the table is, and whether the table data
    is in DBMS memory, as long as there's an index on ID, the query only
    needs to use the index, not the data page to answer. If there's an
    index entry for your ID value, you'll get one row with 1 in it, else
    nothing.
    thanks
    Joe
    Scot McReynolds wrote:
    Hi,
    I am getting the following error when accessing a datasource in an EJB on Weblogic using the Data Direct Drivers.
    java.sql.SQLException: [DataDirect][Sybase JDBC Driver]Object has been closed.
    The code works every other time. the first time through it works the second time I get the error.
    Any insite would be appricated.
    Here is my code
    public String test(String id)
    System.out.println ("test1");
    DataSource ds = null;
    Connection conn = null;
    PreparedStatement stmt = null;
    PreparedStatement stmt2 = null;
    String ret = "?????";
    try
    System.out.println ("read data - prepare");
    InitialContext ic = new InitialContext();
    ds = (DataSource)ic.lookup("java:comp/env/jdbc/dataconn");
    conn = ds.getConnection();
    String sql = "SELECT * FROM myTable WHERE ID = ?";
    System.out.println ("read data - conn.prepareStatement(sql);");
    stmt = conn.prepareStatement(sql);
    stmt.setString(1, id);
    // stmt.setMaxRows(1000);
    System.out.println ("read data - stmt.executeQuery();");
    ResultSet rs = stmt.executeQuery();
    System.out.println ("read data - read");
    if(!rs.next())
    ret = "Not found";
    else
    ret = "found";
    sql = "UPDATE myTable SET column1 = column1 + 1 WHERE ID = ?";
    System.out.println ("update data - prepare");
    stmt2 = conn.prepareStatement(sql);
    stmt2.setString(1, id);
    ret = ret + stmt2.executeUpdate();
    System.out.println ("update data - update");
    catch(Exception e)
    e.printStackTrace();
    finally
    try
    stmt.close();
    catch(Exception exception1) { }
    try
    stmt2.close();
    catch(Exception exception1) { }
    try
    conn.close();
    catch(Exception exception1) { }
    stmt = null;
    stmt2 = null;
    conn = null;
    return ret;

  • How to register a new list of JDBC driver to ODI?

    Hi Guys,
    How to register a new list of JDBC driver to appear on ODI?
    exam :
    When I defined a new master repository that resides on MSSQL 2005
    I already had sqljdbc.jar (This is mssql2005 jdbc driver) on the ..\oracledi\drivers
    But when I browsed jdbc driver list it will not appear any new driver we just put them in the driver folder.
    I knew this is a common issue.
    So I need to manually define a driver class and url to match exactly with the jdbc document say for sqljdbc.jar
    which is
    Driver Class : com.microsoft.sqlserver.jdbc.SQLServerDriver
    URL : jdbc:sqlserver://localhost:1084
    I think that the driver list will have to store in somewhere in the xml files OR some records on the master repository database.
    But where ?
    Because I saw the new list driver (Microsoft SQL Server 2005 driver for JDBC) on the vmware image that I had (actually it is ODI Training workshop VMware Image).
    But I don't know where to looks.
    Here are some proof that they actually appear in the driver list
    [Original MSSQL 2000 Driver List|http://img.ihere.org/uploads/1f6d1601bb.png]
    [New MSSQL 2005 Driver List|http://img.ihere.org/uploads/94cc91e1ac.png]
    How comes?
    Thank you in advance.
    Somchai
    Edited by: somchai on Feb 12, 2009 8:24 AM

    Hi CTS !
    Then, its impossible add new drivers into ODI ? So, if I need to add a driver and this exist in Oracle list drivers, what can I do in this case ?
    I have problems with Oracle JDBC driver in ODI. When I try generate web services the "Not suitable driver" message is shown. In Design, module part, when i generate web service i have the "*name of data source*" field and I put into "oracle.jdbc.driver.OracleDriver". Ok, this isn&acute;t a correct sintax, then I read in this manual "*note that the name of the data source must be consistent with the entries in context.xml and web.xml, prefixed with:java:/comp/env/*".
    Ok, In other post (Re: Not found web.xml and content.xml files into ODI folders
    you said me only necessary to change the web.xml and context.xml is only necessary if I use Tomcat. Then, how to discover a correct sintax to put into this field and generate my web service ?
    Best regards,
    Joao.
    Edited by: JohnnyBeGood on 16/02/2009 09:00
    Edited by: JohnnyBeGood on 16/02/2009 09:29

  • Can't load JDBC Driver

    Hi,
    I can't load my JDBC driver for SQLserver database to
    opening my DB with a servlet ...
    platform : Windows 2000 server
    servlet container : Jakarta-tomcat 3.2.2
    jdk : jdk1.3
    After executing the servlet which load the JDBC driver, the following message was appearing:
    "ClassNotFoundException, java.lang.NullPointerException"
    Thanks for your help.

    Looks like the servlet is not able to find the required class in the package...Tomcat rewrites the classpath....So you might want to look at /bin/tomcatEnv.bat     and modify it accordingly....Of course, check your classpath env variable to see if all the necessary zip/jar files are included.

  • COnfiguring oracle JDBC Driver with Web Sphere

    I have oracle 7.3.4(on Solaris) and IBM Web Sphere standard
    Edition 2.03 (on NT) I want connect to Oracle ina Servlet. Can
    any one help in configuring Oracle JDBC driver in Web
    Sphere?
    Thanks very much
    Tom
    null

    I have oracle 7.3.4(on Solaris) and IBM Web Sphere standard
    Edition 2.03 (on NT) I want connect to Oracle ina Servlet. Can
    any one help in configuring Oracle JDBC driver in Web
    Sphere?
    Thanks very much
    Tom
    null

  • 9iAS and Informix jdbc driver

    Hi,
    How do I configure 9iAS release 2 data source to access Informix database using Invformix JDBC driver? Has any one done it and can share the procedure?
    Sam

    Samir -
    I've not done this, but this is the general idea.
    btw - we ship the DataDirect JDBC drivers with 9iAS to facilitate connections to other databases such as DB2, SS, Informix, etc.
    What you want to do is:
    a) Take the JDBC library you wish to use and put it into the j2ee/home/lib directory (bounce the server since this directory is read at startup time and the classpath constructed. Dynamic additions are not picked up)
    b) Define an emulated datasource in the j2ee/home/config/data-sources.xml file using the driver class and specific URL connection string for the JDBC driver you want to use:
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="InformixDS"
    location="jdbc/if/CoreDS"
    xa-location="jdbc/if/xa/XADS"
    ejb-location="jdbc/if/DS"
    connection-driver="informix.some.packaged.JDBCDriver"
    username="scott"
    password="tiger"
    url="jdbc:informix:....."
    />
    ** the connection-driver and URL attributes will be determined by the specific JDBC driver you are using
    c) Use the datasource like any other data source at this point - you should be able to lookup the datasource using the location entries and get a connection.
    If you are using the Oracle9iAS environment as opposed to the standalone environment, then the same set of tasks should be applied using the facilities provided (ie the EM console) by that distribution.
    -steve-

  • J2EE SDK & SQL Server JDBC Driver

    I am trying to use SQL Server JDBC Driver with J2EE SDK.
    Following with the instruction of Deployment tool's help, I configured both the SQL Server JDBC and JDBC-ODBC Bridge. My classpath has include SQL Server JDBC Driver's lib, and my java program can connect to SQL Server 2000 correctly. but deployment tool always told me "no suitable driver" with SQL Server JDBC Driver when I want to generate SQLs. With JDBC-ODBC bridge, it's OK.
    Why? I just want to know that if there is anywhere else that I can configure the class lib. I think it's because J2EE can't find the classes of SQL Server JDBC, but I don't know how to do.

    step 1:download the sql driver and unzip it
    step 2:copy the .jar file to $j2ee_home%/lib/system
    step 3:modif userconfig.bat file ,add the .jar files
    to j2ee_classpath
    step 4:modify you resource.properpties files,add
    yourself
    JNDI name.
    because i am a chinese,have poor english,if can't
    trouble,send e-mail to me,i can replay to u with the
    config files.I do as your steps,but it still cannot work. for bookstore1(j2ee tutorial example), it give out such exception:
    javax.servlet.UnavailableException: Couldn't get database.
         at BookStoreServlet.init(BookStoreServlet.java:28)
    what 's the problem?
    please give me some advice.

  • Need clarification abt JDBC driver

    Hi All,
    I installed Oracle 10g and now accessing the DB using Java.
    I am using this below code :-
    Class.forName ("oracle.jdbc.driver.OracleDriver");
    Connection con = DriverManager.getConnection
    ("jdbc:oracle:thin:@localhost:1521:orcl","scott","tiger");
    Using classes12.jar (type 4 driver)
    I am getting this error :-
    Error is: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    localhost:1521:orcl
    Please get back with solution
    Regards,
    Bhargava.

    Bhargava,
    The JDBC Forum is more appropriate for your post.
    In that forum you will find the following announcement that package "oracle.jdbc.driver" is deprecated.
    If you have Oracle 10g database installed, then you also have the "ojdbc14.jar" file which is a JDBC driver compatible with JDK 1.4.
    File "classes12.jar" is for JDK 1.2
    From the error message you posted, it looks like "orcl" is not the name of your database instance.
    The following SQL query will give you the instance name:
    select INSTANCE_NAME from V$INSTANCEI also suggest perusing the JDBC Developer's Guide and Reference which is part of the Oracle documentation.
    All of the Oracle documentation can be accessed from:
    http://www.oracle.com/technology/documentation/index.html
    Good Luck,
    Avi.
    Message was edited by:
    Avi Abrami

  • MSSQL JDBC driver missing for installation of NW '04 SR1

    Hi all,
    during the installation of NW '04 SR1/EP6 on a system running MSSQL Server 2000 SP4 SAPinst crashes with the following error:
    ERROR 2007-03-06 22:33:34
    MDB-05800  <html>Cannot find jdbc driver for MS SQL Server</html>
    I searched this forum, the notes and asked Dr. Google but to no avail. Can anybody give me a hint what's the problem, please?
    Best regards,
    Bernd

    Thanks a lot for your help Dan! Your suggestion has shown me the right direction. As I wrote the directory you mentioned was indeed missing. I copied it from another installation and it worked.
    At least it seemed to work, but I've got another problem concerning the database connection during the installation. While performing the step "Load Java Database content" SAPinst crashes again with the following output:
    com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    The strange thing is that I found two different SQL driver on the machine with the working installation! One was located in the installation media directory, the files WebAS is working with are obviously another version, because they have significantly different files sizes!
    Does someone have a hint which versions of SQL Server and driver files do work together?

Maybe you are looking for

  • IDOC not generated in R/3

    Hi, we30- i have created the custom idoc WE81 : for message type creation we82- assigned it to custom message type SE37: created a BAPI function module - no coding in the source i would like to just generate idoc in R/3. WE57 : to assign a BAPI funct

  • Data is not updating in calss & Convert vi reference to strictly type reference vi

    Hi, In the attached project file there is a Class called 'ClassSample.lvclass' having 3 different data types Boolean, Numeric and Variant(not really sure, Variant can be use for strict data type reference). From this three we careated the 'VIs for da

  • Display projet planned line items CJI4

    i have done planning on wbs *** cost element level in CJR2 along with quantity im trying to run report CJI4 but no line item selected. No line items were selected Message no. KB422 Diagnosis No line items were found. Possible explanations: You have n

  • Calling a function through JDialog

    Hi all, The title might be a bit confusing, but the topic is about the following: I've got a JFrame as the main application. From the main application a JDialog gets called when you want to see more about an item in the JFrame. Because I want to coll

  • Photo in 10.10.3 converted iPhoto library, but lost photos.

    Forced conversion to photo from iPhoto has now lost all files in iPhoto.  After upgrade, lost only some photos.. thumbnails there, but got big ! when trying to open. Restarted photo with option-command key down, which allowed it to rebuild library.