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 Chriss Miller 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: *

  • Users: keenanbr
  • Content: Threads
  • Order by date
  1. keenanbr

    XMLGregorianCalendar to Oracle Date

    Does anyone know how to convert a string representation of an XMLGregorianCalendar (2012-08-02T14:56:19.000+01:00) to an Oracle date. The value is to be passed to mybatis as a string and a TO_DATE performed on it. If I pass in 2012-08-02 14:56:19 and use "yyyy-MM-dd HH24:MI:SS", 13L56:19 gets...
  2. keenanbr

    OWA Calendar IE8 caret browsing

    Recently upgraded from IE6 to IE8. Using OWA calendar in Daily view, when there is already an entry for that day if you click on any other time the cursor jumps to the top of the screen. You cannot select a time if it's on the bottom half of the screen. When caret browsing is turned off the...
  3. keenanbr

    OWA Calander Caret Browsing

    Recently upgraded from IE6 to IE8. Using OWA calander in Daily view, when there is already an entry for that day if you click on any other time the cursor jumps to the top of the screen. You cannot select a time if it's on the bottom half of the screen. When caret browsing is turned off the...
  4. keenanbr

    jxl

    I don't think this is possible but thought I'd ask. A cell's value is calculated based on a formula e.g. A2=A1*3. Change A1 value Number number = new Number(0,0,6); //set A1 to 6 workSheet.addCell(number); System.out.println(workSheet.getCell(0,1).getContents())); expect output to be 18
  5. keenanbr

    saxon xpath

    with com.sun.org.apache.xpath.internal.jaxp.XPathImpl private String getProductCode() { String productCode = null; String fileName = location + "/" + originalClientFile; DocumentBuilderFactory docFactory = DocumentBuilderFactory .newInstance(); docFactory.setNamespaceAware(false)...
  6. keenanbr

    Basic jar question

    I have created a jar file; There is just one class in it called XMLUtils My manifest is ; Manifest-Version: 1.0 Class-Path: ".;C:\Documents and Settings\a995085\.m2\repository\commons-io\commons-io\1.4\commons-io-1.4.jar" Main-Class: XMlUtils When I run as; java -jar XMLUtils.jar...
  7. keenanbr

    GetModuleFileName

    New to java. How can I GetModuleFileName. Regards,
  8. keenanbr

    sql error 266

    I reset my prog without committing or rollback. Now I can't begin, commit or rollback. How can I clear this error? Regards,
  9. keenanbr

    DBExpress Return Value from Stored Procedure

    Given set ANSI_NULLS OFF set QUOTED_IDENTIFIER ON GO ALTER procedure [dbo].[sp_DiaryShow] @mySalesDesk varchar(50) AS declare @iCount int select @iCount = count(*) from boss_system where Parameter ='DiaryNotAllowed' and value = @mySalesDesk IF @iCount >= 1 /* not allowed to see diary */...
  10. keenanbr

    Delphi2009 Data Explorer CA400 Add New Connection

    Can anyone help me with this? I am trying to add a new AS400 connection. I have edited dbxdrivers.ini thus; [CA400] GetDriverFunc=getSQLDriverCA400 LibraryName=dbexpca400.dll VendorLib=cwbdb.dll Database=MYAS400 User_Name= Password= ServerCharSet= ErrorResourceFile= LocaleCode=0000...
  11. keenanbr

    As400 DbExpress Connection

    I'm trying to use DBExpress to connect to AS400. I have added the following to 'dbxdrivers.ini' [CA400] GetDriverFunc=getSQLDriverCA400 LibraryName=dbexpca400.dll VendorLib=cwbdb.dll Database=10.70.65.68 User_Name= Password= ServerCharSet= ErrorResourceFile= LocaleCode=0000 BlobSize=-1...
  12. keenanbr

    Delphi 2009 TSQLDataSet.CommandType

    Is it possible to set the Command Type? SQLDataSet1.CommandType := ctQuery (ctStoredProc etc) Thanks,
  13. keenanbr

    Delphi 2009 Structure Errors

    I am in the process of converting an application from Delphi 3 to Delphi 2009. I have loaded the application in 2009 and the conversion has taken place successfully. The application compiles and runs successfully. My problem is that it is showning errors in the top left of the IDE under...
  14. keenanbr

    Migrating from BDE to ????

    We are about to upgrade a delphi 3 application to delphi 2009. We are also uograding the DB from MSSQL 2000 to 2005. We also want to move away from the BDE. Any suggestions, advice appreciated. Regards,
  15. keenanbr

    Program that will read delphi project

    I would like to write a program that will list all the forms in another delphi project and get the properties of the data access components on each form. I have written code that will do this from within a project (i.e. loop through the components on the open form and get their properties)...
  16. keenanbr

    get properties of component

    Hi, I am trying to write a procedure which will read all the Data Access components on a Form. So far I have managed to list all the components and each components properties. I haven't been able to get the values of the properties and I haven't been able to identify which ones are Data Access...
  17. keenanbr

    Folder Sync

    Is there any way I can tell if a folder is setup to be synched. I have mobile users who sometimes work offline and sometimes online. There is a network folder which is synched to there local drive. I need to be able to tell if indeed they are setup to be synched. It seems to have something to...
  18. keenanbr

    Disk Synching

    Is there any way I can tell if a folder is setup to be synched. I have mobile users who sometimes work offline and sometimes online. There is a network folder which is synched to there local drive. I need to be able to tell if indeed they are setup to be synched. Regards, BK
  19. keenanbr

    jar file

    I am new to java. I have written an application which works just fine but when I package it into a jar file it fails when trying to connect to the database(see below) with SQLException no suitable driver found for jdbc.oracle.thin......... Any help appreciated. package as400; import...
  20. keenanbr

    Which JTable has the focus

    Hi, I'm new to java. I am writing an application (converting from vb.net). So far (amongst others) I have a Jmenu and JtabbedPane. On each tab there are either 1 or two tables (JTable) which are populated from xml. In the menu there are options to insert/delete into/from table. I can tell which...

Part and Inventory Search

Back
Top