Database DATE field

I have a process on a page that loads a form's field data into a %rowtype variable and passes it to a package in the database.
The package then performs an update to the table holding the data.
There is a DATE field that I can not validate on the APEX front-end.
So, if the user enters something in the date field that is invalid,
it gets passed to the package on the back-end that's doing the update and it throws a database error back to APEX.
Question: How can I intercept this during the update.
Sure, I can update the other fields and send a flag back to APEX indicating that something is wrong with the date field and APEX can then redirect the user to a "You entered an invalid date field". But then I'm just re-creating the APEX validation that I can't use.
This is where the customer has put me. 8-)
Just wondered if I'm missing something. I guess I could do some formatting validation in the APEX process, but then I'm still just mimicking the APEX-provided validations.
Thanks.
Edited by: semaphore on Sep 15, 2008 8:33 AM

Why can't you validate the date field in apex front end?
You can certainly determine if the field is a valid date or if it falls within a range.
It's just custom item validation that needs to be done.
I have apex pages with start and end dates and I check that end date is greater or equal to start date, etc.
If its got to be a range of dates you can pick a date from a lookup.
You could also populate it from a calendar.

Similar Messages

  • MS Access returns a SQL Database date field as text

    When linking to a table via ODBC to a SQL database, Access returns any field that is formatted as 'Date' as a 'Text' field. A Date/Time field works fine. I cannot change the SQL Database.  Is there a fix for this?

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Which version of Access and SQL server do you use?
    Do you use ODBC Driver 11 for SQL server?
    Based on my test (My environment: Access 2013, SQL server 2014, and ODBC Driver 11 for SQL server), I can't reproduce your issue. Regardless  of "Date" and "Date/Time" data type of SQL, both of them can be linked to Access
    that are formatted as Date/Time type.
    I suppose this issue may be caused by the data. For example, if the date like: 2015--2--23, it can't be recognized as date type in Access. Please try to check it.
    If you have any update, please feel free let me know.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to insert a data&time to Database date field

    Dear Friends,
    I have created a Stored Procedure which takes a Date data type as an input,When i call this procedure from java i need to set the data&time in
    yyyymmddhhmmss format. How to set this from java ?.
    Rgds
    Mohan S

    How to set this from java ?.Usually you use a prepared statement and one of the set methods.
    Or you can use setString() and format the date yourself using SimpleDateFormat.

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • Bizare date field behavior in an Oracle database.

    I have this bizare data problem quering an oracle date field.
    Look at these two result sets.
    Missing Two records.:
    COUNTY_CD
    CONAME
    FILE_DATE
    TRANSMISSIONS
    RECORDS
    NO_ERROR_RECORDS
    ERROR_RECORDS
    TOTAL_ERRORS
    03   
    AMADOR                    
    07-NOV-11            
    10                
    405               
    396               
    9                 
    9                 
    10   
    FRESNO                    
    07-NOV-11            
    1                 
    204               
    200               
    4                 
    4                 
    16   
    KINGS                     
    07-NOV-11            
    3                 
    1296              
    1110              
    186               
    194               
    20   
    MADERA                    
    07-NOV-11            
    1                 
    552               
    535               
    17                
    17                
    51   
    SUTTER                    
    07-NOV-11            
    1                 
    43                
    5                 
    38                
    38                
    WHERE
            r.file_date BETWEEN TO_DATE('2011-11-07 00:00:00','YYYY-MM-DD HH24:MI:SS')
                            AND TO_DATE('2011-11-07 15:00:00','YYYY-MM-DD HH24:MI:SS')
    All Expected records
    COUNTY_CD
    CONAME
    FILE_DATE
    TRANSMISSIONS
    RECORDS
    NO_ERROR_RECORDS
    ERROR_RECORDS
    TOTAL_RECORDS
    03   
    AMADOR                    
    07-NOV-11            
    10                
    405               
    396               
    9                 
    9                 
    10   
    FRESNO                    
    07-NOV-11            
    1                 
    204               
    200               
    4                 
    4                 
    16   
    KINGS                     
    07-NOV-11            
    3                 
    1296              
    1110              
    186               
    194               
    20   
    MADERA                    
    07-NOV-11            
    1                 
    552               
    535               
    17                
    17                
    50   
    STANISLAUS                
    07-NOV-11            
    2                 
    17002             
    7165              
    9837              
    10028             
    51   
    SUTTER                    
    07-NOV-11            
    1                 
    43                
    5                 
    38                
    38                
    WHERE
            r.file_date BETWEEN TO_DATE('2011-11-07 00:00:00','YYYY-MM-DD HH24:MI:SS')
                            AND TO_DATE('2011-11-07 15:59:59','YYYY-MM-DD HH24:MI:SS')
    Can anybody tell me why looking for recrods by the FILE_DATE field that has no time portion, it is a 'DATE' data type field, would produce different results based on different time parameters passed into the WHERE clause?  This has me really confused and I just can not figure out why this behavior changes which makes me leary to trust a work around solution of just apending random time data to the where clause.
    Below it the entire SQL query from the origanal source.
    SELECT
    r.county_cd,
    c.coname,
    COUNT(unique r.file_name) AS transmissions,
    count(r.use_no) AS records,
    count(r.use_no) - count(e.use_no) AS no_error_records,
    count(e.use_no) AS error_records,
    sum(e.errors) AS total_errors
    FROM
    raw_pur r INNER JOIN
    pur_lookup l
    ON (r.use_no = l.use_no AND r.year = l.seq_year) LEFT OUTER JOIN
    SELECT
    year,
    use_no,
    count(use_no) AS errors
    FROM
    errors
    WHERE
    NOT (error_code = 17 OR error_code = 20 OR error_code = 72 OR error_code = 52 OR
    (error_code = 12 AND error_type = 'POSSIBLE') OR
    (error_code = 69 AND error_type = 'POSSIBLE') OR
    (error_code = 37 AND error_type = 'POSSIBLE') OR
    (error_code = 39 AND error_type = 'POSSIBLE'))
    GROUP BY
    year,
    use_no
    ) e ON (r.year = e.year AND r.use_no = e.use_no) INNER JOIN
    county c
    ON (r.county_cd = c.county_cd)
    WHERE
    r.file_date BETWEEN <cfqueryparam value="#form.fromDate#" cfsqltype="cf_sql_date">
    AND <cfqueryparam value="#form.toDate#" cfsqltype="cf_sql_date">
    GROUP BY
    r.county_cd,
    c.coname
    ORDER BY
    r.county_cd

    Thanks guys.  The errant records in question do indeed have time portions to the values in the FILE_DATE field, though they are not supposed to and all the other records do not.
    Thanks for the suggestion to use the to_char function to suss out the actual, full values. 
    It is always so useful to have helpful IDEs (Oracle SQL Developer in my case) that hide information from you.  I was using this to look at the field expecting to find time data, but was not seeing it.  I guess SQL developer is formatting the date-time value for me since this is a date field.  How helpful in a debugging situation.
    Now to figure out why these records are in the database in this way in the first place.  Because they are not supposed to be.
    Again, thanks for the help.
    Ian

  • Database Type field in Data Services 3.0

    Hi,
    Now I'm using the IDSServer 4.5 JDBC-ODBC driver type 3 to connect BEA Acqualogic Data Services 3.0 to MS-Access 2003.
    I configured the IDSWaldbottDS DataSource with those parameters:
    Driver class name: ids.sql.IDSDriver
    URL: jdbc:ids://psnb161:12/conn?dsn=WaldbottDS
    I created the system DSN ODBC datasource called 'WaldbottDS' in Windows XP
    Based on the AdminServer log file, I can demostrate that the BEA connect successfully with MS Access:
    ####<Mar 5, 2008 9:14:37 AM ACT> <Info> <JDBC> <psnb161> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1204726477248> <BEA-001516> <Connection Pool "IDSwaldbottDS" connected to Database: "ACCESS", Version: "04.00.0000".>
    Now, In the project Explorer, I executed those commands:
    New -> Physical Data Service.
    Inside the Create Physical Data Service dialog box, the Relational database objects is set to Tables and views.
    I select the Data Source Type as Relational. When I select IDSwaldbottDS as Data Source, nothing appears in "Database Type" field. If I press the next button, an error message appears:
    "Cannot obtain connection: driverURL = jdbc:weblogic:pool:IDSwaldbottDS, props = {EmulateTwoPhaseCommit=false, connectionPoolID=IDSwaldbottDS, jdbcTxDataSource=true, LoggingLastResource=false, dataSourceName=IDSwaldbottDS}.
    Nested Exception: java.lang.RuntimeException: Failed to Generate Wrapper Class
         at weblogic.utils.wrapper.WrapperFactory.createWrapper(WrapperFactory.java:213)
         at weblogic.jdbc.wrapper.JDBCWrapperFactory.getWrapper(JDBCWrapperFactory.java:173)
         at weblogic.jdbc.pool.Driver.allocateConnection(Driver.java:247)
         at weblogic.jdbc.pool.Driver.connect(Driver.java:164)
         at weblogic.jdbc.jts.Driver.getNonTxConnection(Driver.java:647)
         at weblogic.jdbc.jts.Driver.connect(Driver.java:137)
         at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:359)
         at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:550)
         at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:224)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:440)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:436)
         at weblogic.rmi.internal.BasicServerRef.access$300(BasicServerRef.java:58)
         at weblogic.rmi.internal.BasicServerRef$BasicExecuteRequest.run(BasicServerRef.java:975)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    I recognize that the "Database Type" must be filled with the database version so I can continue configuring the physical Data Source for MS Access 2003.
    How can I solve this problem?

    [ There original post I made is incorrect.  The classes/shared libraries need only to be available to the server - they do not need to be available to ALDSP Studio, since the database is access via the server. Double check that the required classes/shared libraries for your jdbc driver are available to your server ]
    I searched our CR database for the stacktrace/error that you have and found serveral CR. Most of them indicate the problem was jar file(s) for the jdbc driver were not present in the client classpath. So - whatever you added to the server classpath (and PATH - if there were also shared object libraries) - we need to add those to the ALDSP Studio (eclipse) classpath (PATH).
    you can put the jar(s) in
    aldsp_3.0\eclipse-plugins\dsp\eclipse\plugins\com.bea.dsp.ide.external_3.0.0
    and modifying
    aldsp_3.0\eclipse-plugins\dsp\eclipse\plugins\com.bea.dsp.ide.external_3.0.0\META-INF/manifest.mf.
    There are two places in manifest.mf you will need to add the jar file - once under Bundle-Classpath and once under Export-Package.
    Edited by mreiche at 03/07/2008 10:48 AM

  • Urgent, Please help !!! Input Date field in Mysql database using JSP

    Hi All,
    Please help me ! I am trying to store a date field in MySql databaseusing JSP on Tomcat Server.I am gettting the following error.
    I am taking the String Input and then trying to convert it into date type
    inorder to store it into date field in a database.
    I am using the following code :
    <%
    try{
    String dt=request.getParameter("avldt");
    SimpleDateFormat adt= new SimpleDateFormat("dd-MM-yyyy");
    Date sqlToday = new java.sql.Date(adt.parse(dt).getTime());
    catch(ParseException e){
         e.printStackTrace();
    %>
    But I am getting the following error message :
    Class jsp.myjsp.SimpleDateFormat not found.
    Please help me !!!.It's very urgent.
    Thanks,
    Savdeep

    programming is more then copy pasting, it actually is usefull to think about what you are doing. First you declare that you date is format dd-MM-yyyy, then you want to parse a date in format dd/MM/yyyy and behold Java warns you it cannot parse the one into the second ! Cant you solve the rest of this puzzle yourself then ?

  • Decrypting an ecrypted data field in Oracle Database

    I am trying to decrypt an ecrypted data field (which is in
    Oracle Database)in Java. Can somebody help me since I am totally
    new to this.
    Thanks

    Ganesh,
    I am writing a program in Java where I am trying to query an
    Oracle Database table for UserID and Password since this
    password is encrypted in Oracle Table so I want to decrypt it in
    my program and then further pass it for the user.
    Thanks
    Anu

  • How to Transfer Database Table Field to Data Type in XI

    Dear All,
    Dear All,
    I am working on scenario to transfer data(Database Table) from Non SAP System to SAP system through XI.
    While Defining "Data Type" in XI i want to create Data Type as of Database table in my(Oracle Database).There is any direct method to import Database Table field into "Data Type" in XI.
    thanks,
    RP

    Hi;
    Edit plus is a tool using which you can edit your file and make changes to it.
    You can download it from net ,just search for it on google.
    this will help you to get in the field names of the table by editing the file .
    Mudit

  • Querying a date field with different masks in form and database

    Dear friends,
    I have a field with date format mask dd/mm/yyyy hh24:mi:ss, but the same field has date format dd/mm/yyyy inside the form which queries it.
    If I run this form, obviously I will query this date in dd/mm/yyyy format mask, but this date is not being found because it doesn't include hh24:mi:ss (hour) from the database field.
    How can I solve this problem? I tried to change my form, putting a format mask with hours, but it requires me to query this date with time, and obviously no one needs to know the exact moment (with seconds!) when the date was recorded in the database.
    Thanks, and best regards,
    Franklin

    Franklin,
    You could instruct your users to use the '%' when they enter a date search criteria. Another alternative would be to programatically add the '%' to the date. Also, if your Block based on a view you could alter the vuew to use TRUNC() on the date field to drop the time.
    Another option would be to use the Pre-Query trigger to modify the Block WHERE clause to: TRUNC(date_field) = :block.date_field.
    Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question, please mark the response accordingly. Thanks!

  • Update date field to database

    Hi All,
    I tried to update a date field to my database by using dataprovider, however, I got the following error "java.lang.RuntimeException: Number of conflicts while synchronizing: 1 SyncResolver.INSERT_ROW_CONFLICT row 1 Can't infer the SQL type to use for an instance of java.util.Date. Use setObject() with an explicit Types value to specify the type to use." Anyone can help me to resolve this problem?

    Also, following:
    http://blogs.sun.com/jfbrown/entry/using_creator_to_insert_into
    http://developers.sun.com/prodtech/javatools/jscreator/reference/techart/2/insert_row_in_table.html#4

  • Date fields in ILEARNING database

    Hi All,
    I am extracting data from the attempts table in ILEARNING directly using a user created for me to access the ILEARN schema objects i.e. Users, Attempt, Offering and Content object tables.
    One big problem I am faced with is getting the time portion from the dates fields in all these tables.
    For example the timestamp field when queried directly at the database will only provide date of attempt. However, when you run the same SQL in ilearning it will return the time portion in addition to the date within the same field.
    We are in the process of extracting our entire users and attempts data and creating a report to be ran over the ilearning client will fail as it can't handle the number of records we have particularly as regards to the attempt records.
    Any help, advice and guidance will be greatly appreciated.
    Thanks

    Hi,
    Have you tried formatting the datetime value in your query? Something like TO_CHAR(timestamp, 'DD-MON-YYYY HH24:MI:SS')
    Regards,
    Jason

  • How to add 5 hours to an existing date field in the database

    Have a date field 2013-11-21 00:00:00.000 but need to add 5 hours to it to make it 2013-11-21 05:00:00.000.
    Please how can I do this?
    Mijecarr

    Fantastic...
    DATEADD (hour , 5 , Cast(ActivationDate as datetime) ) worked!!!
    Thank you very much
    Mijecarr

  • Error While using date fields in HIbernate Criteraia

    I am trying a sample applciation using Hibernate with JPA. I am using annotations to map database table with Java class.I am using org.hibernate.Criteria to form where clause. My code looks as follows:
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("PERSISTANCE_UNIT");
    EntityManger em = emf.createEntityManager();
    Session session = em.getDelegate();
    Criteria criteria = session.createCriteria(MyDO.class)
    criteria.add(Restrictions.eq("myDO.date",myDO.getDate()));
    List list = criteria.list();
    I am searching the data base based on the date field (myDO is an instance of MyDO.class which contains the mapping to the data base table). While running the application first time after publishing to server, I am getting the following error. For subsequent running of the application I am not getting any error and the appliaction was running with actual results.
    JDBCException W org.hibernate.util.JDBCExceptionReporter logExceptions SQL Error: -181, SQLState: 22007
    JDBCException E org.hibernate.util.JDBCExceptionReporter logExceptions THE STRING REPRESENTATION OF A DATETIME VALUE IS NOT A VALID DATETIME VALUE
    org.hibernate.exception.DataException: could not execute query
         at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:77)
         at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
         at org.hibernate.loader.Loader.doList(Loader.java:2223)
         at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2104)
         at org.hibernate.loader.Loader.list(Loader.java:2099)
         at org.hibernate.loader.criteria.CriteriaLoader.list(CriteriaLoader.java:94)
         at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1569)
         at org.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:283)
    Can anybody help in fixing the problem.
    Thanks in advance.

    Resolved the issue by setting System date where expected

  • Check for null value for Date Field

    Hello everyone,
    I have a database that consist of date field and also a bean that will able to access the db.
    here are my example:-
    private int setDate(int date) {
    this.date = date;
    private void getDate {
    return date;
    later, I entered a date value and wanna check whether the date is on the database or not. SO, do you all have any idea?

    Perhaps before passing your date off to a primitive int, you could pass it to an [Integer] object. Then check to see if that object is null;
    Integer d = new Integer(int value);
    if (d == null) {
    }

Maybe you are looking for

  • Problems faced by me using the 5700

    I bought the nokia 5700 a month ago and it has been this way since then. I face a few problems which i wish were added in a update for the firmware by nokia. Is there anyway to inform nokia about this? Problems faced by me: 1)In the log after switchi

  • Document No. in parallel Ledger

    Hi, We use parallel ledger in TRM and create two valuation area 001 and 002 for IGAAP and IFRS. We Initialization of Parallel ledger. We post both valuation area for accounting but system pickup diff. number range as per valuation area. My document t

  • How to deploye .war files in SOA_Server1 ?

    Hi, I was created Auto Generated Task form for Human Task in 11G.After that how to deploye .WAR files manually in "Infra -Soa(Soa_srerver1)" .Plz help me now

  • IS THIS BUG FIXED ????? CFMX bug #55440

    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=3&threadid=88 9844&highlight_key=y&keyword1=cfdirectory CFMX bug #55440

  • Creating Thumbnails with ImageIO or JAI?

    Hello, Could anyone advise between the clases available in ImageIO and the JAI. Which use the least amount of memory, and is quickist in creating thumbnails from an jpeg, or gif image? My thought was the JAI would be quicker, and perhaps uses less me