AIR SQLite timezone question (JavaScript)

SQLite stores dates in UTC, which is great, but when I fetch the value, the resulting date object is incorrectly offset. Hopefully I'm missing something obvious and someone can point it out. Here's what I'm doing:
CREATE TABLE myTable ("id" INTEGER PRIMARY KEY ,"created" DATE);
INSERT INTO myTable (id,created) VALUES (1,DATETIME('NOW'));
SELECT id,created FROM myTable WHERE id=1;
My expectation is that the INSERT will store the current date/time adjusted to UTC. Because the AIR runtime casts date values to JavaScript date objects, my expectation is that the SELECT would give me back a valid date object, from which I could display either UTC or local time information. And it almost does.
Suppose 'NOW' is 11:42:23 AM Pacific Time (GMT-8). I would expect the time information from toString() on the resulting date object to print something like "11:42:23 GMT-0800" but instead, I'm getting "19:42:23 GMT-0800". Clearly, it's a timezone issue because minutes and seconds look good. It's like AIR (or SQLite) is assuming that the value "11:42:23" is already UTC when inserting, and when AIR creates the resulting date object, it's applying the 8 hour timezone offset.
I tried the solution posted here, which is to modify the INSERT as follows.
INSERT INTO myTable (id,created) VALUES (1,DATETIME('NOW','localtime'));
That works, but I don't want to store these values as local times, I want to store them as UTC and display them as local times. Meaning I should be able to store "11:42:23" in the Pacific timezone, and if I change to Eastern, I expect that value to be displayed as "14:42:43". When I use this solution, toString prints "11:42:23 GMT-0500".

Update: Based on this topic on Stack Overflow, I tried changing the value in the insert from "DATETIME('NOW')" with a parameter:
stmt.parameters[":created"] = new window.runtime.Date();
(Aside: it's kind of annoying that AIR does not support JS dates, I'd like to see that change.)
Anyway, this still doesn't solve the original problem. It works just like using DATETIME('NOW','localtime'). If the value goes in at 1:54pm PST, and I change the timezone to EST and read the value, it displays as "1:54pm EST", when I would expect it to be "4:54pm EST".
Any advice is appreciated. Thanks!

Similar Messages

  • Adobe Air SQLite Concurrency/Best Practices

    Hello Everyone,
      I posted this on Stackoverflow, but I was wondering if there were any I guess design patterns or hints concerning the usage of a SQLite DB.  I'm asking this mostly because with the Adobe Air sqlite implementation, you can't modify the timeout, so you have to re-architect your application to try and retry your sql statements.
    I am attempting to use a SQLite DB with an AIR project and there seem to be a few questions that I just can't seem to find the answers to on the internet, especially ones concerning best practices.
    The first is about having multiple connections in the same application instance.  Some application processes require the use of a db for a split second, and would better be served by a synchronous type code flow (try{}catch(){}).  Some processes may take awhile and would be better served by an asynchronous code flow with an AsyncResponder.  Because of this, I have thought about having a ConnectionPoolManager which would have multiple instances of async and one instance of my sync SQLConnection classes.  Is this a decent, good or absolutely atrocious idea ?  This leads me to my next point.
    Is there any issue of having multiple async connections running their async statements in parallel ?  I've seen some people complain about the db being locked, and I've read that only one statement can perform a write at a time.   What happens if a write statement gets called to execute(new Async...) while another one is busy ?  Will an error be thrown, or will it wait for a timeout ?
    Any clarification about this issue would be greatly appreciated.  I keep running into sources that kind of answer one-off questions but not my question in particular.  Usually I would go test it myself, but I'm worried I may not be able to reproduce the pitfall error that will only manifest itself at heavier usage levels.

    I'd suggest checking out the following links for tips and
    source code for best practices on SQLite:
    http://www.adobe.com/devnet/air/flex/articles/air_sql_operations.html
    http://www.peterelst.com/blog/2008/04/07/introduction-to-sqlite-in-adobe-air/
    - Rob

  • I have a macbook and now I have a Macbook Air, So my question is how can I transfer all my stuff from my old mac to my new mac air?

    I have a macbook and now I have a Macbook Air, So my question is how can I transfer all my stuff from my old mac to my new mac air?
    Thanks

    How to use Migration Assistant to transfer files from another Mac
    MacBook Air- Use Internet Sharing to optimize data migration
    Migration Assistant tips and tricks
    OS X Lion- How to use Migration Assistant to transfer files from another Mac

  • New MacBook Air and iPad question

    Hi everyone,
    I purchased a Macbook in 2009 and have today upgraded to a brand new MacBook Air.  My question is about my iPhone and iPad and keeping these up to date.  Both are running iOS 5 so I do all updates by wifi which is easy and fast.  Although prior to iOS 5 of course I had to connect these to my Macbook and update that way.  At this stage I am still setting up my new Air and just wonder if there is even any need to connect either device to it?  I have the music that I want on both devices and new used my Macbook to download any apps, I always do them directly on each device.  So do I need to set up either on there?  At this stage I think no but I am just wondering if I am forgetting something.
    Many thanks

    What 'app'?
    If you owned them before they are free.
    Peter

  • "air" Object undefined, using JavaScript.

    Hello,
    I'm using Adobe Air to extend the functionality of an
    existing web client (allowing access to file-system, etc). The web
    client is programmed in JavaScript.
    Because the source code of the web client is pretty big, I
    would like to avoid code branches. That is, I would like the web
    client to run in the "improved" mode, if and only if it detects
    it's running in an Adobe Air environment, otherwise it must behave
    normally. This makes sense because the number of added
    functionalities is quite small.
    I started by creating a HTML Air application that displays a
    login panel with three fields:
    - server
    - username
    - password
    The web client is deployed on a server. I want to avoid
    packaging the whole web client + server in the Adobe Air
    application. That doesn't make sense for my purpose. This is the
    reason why I added a "server" field in the login page: the user can
    enter the URL of the server he wants to connect to.
    When the user clicks on the login button, the application
    posts the real login page of the web client (with AJAX) and it gets
    a session id cookie. Finally, I load the web client with:
    window.location.href =
    http://www.example.site/path/to/index.jsp
    After this line of code is executed, I can see the web client
    running in my Air application. Now, to extend its functionality I
    have to add some Air code in its JavaScript files.
    So I added the following code to the index page.
    <script type="text/javascript"
    src="path/to/AIRAliases.js"></script>
    and I started editing a JavaScript file:
    if (air) { // We are running in an Air environment
    // improved code
    } else { // We are running in a browser
    // normal code
    The problem is that the "air" object is always undefined. I
    though this was a problem of AIRAliases.js, but it wasn't the case:
    "window.runtime" is also undefined.
    It seems like "window.runtime" is undefined after any
    "window.location.href = ..." instruction.
    Is this normal?
    Is there another way to load a website in an Air application,
    giving it access to the "air" object?
    Thank you,
    Matthew

    Thank you Joe for the explanations. I had a deep look at the
    documentation about sandboxes.
    I'm now able to set up a bridge between my remote client's
    javascripts and the "dangerous" functions with access to the full
    Air API.
    However, I still have a big problem.
    My remote web client displays a list of files (that's a very
    simplified description). What I would like to do is letting the
    users drag-and-drop files from the desktop into the files' list
    (that would be the drop zone). Then, they will be automatically
    uploaded to the server.
    The problem is that I can't access the "getData" method of
    the "drop" event I get in the event handler:
    dropZone.addEventListener("drop", function(e) {
    window.parentSandboxBridge.upload(e.dataTransfer.getData("application/x-vnd.adobe.air.fil e-list")[0]);
    I also tried moving the event handler in the app sandbox but
    it didn't work:
    dropZone.addEventListener("drop",
    window.parentSandboxBridge.dropEventHandler);
    The error I get is always something like getData is
    undefined.
    How can I solve this?
    Thanks
    Matthew

  • Adobe AIR Local Database Questions

    Hi All,
    I have very limited experience using Adobe AIR but it seems really cool since I'm plenty familiar with jQuery and other web technologies. We have a client interested in creating a desktop application that would rely on the local database feature of AIR. I have some questions though before I begin development.
    I understand that AIR uses SQLite correct?
    How robust is this database system? Some of the larger implementations of the AIR desktop software we're planning could have 500,000+ db records, is AIR cut out for this?
    Where can I get some info on making use of the local database?
    Here's some other non-DB related questions:
    Can we send out software updates via CD for those without an internet connection at thier location?
    Can AIR allow an application to interact with a USB device?
    Thanks for all your help!!

    Hi,
    note: I'm not expert
    #1
    yes, AIR uses SQLite (3.6.*.? now one exactly knows as it is undocumented and sqlite_version() native function will throw runtime error to be handled)
    #2
    it depends for what purpose it will be used and how, yes? e.g.:
    http://stackoverflow.com/questions/3160987/can-sqlite-handle-90-million-records
    #3
    http://www.adobe.com/devnet/air/flex/articles/air_sql_operations.html
    (User experience considerations with SQLite operations)
    http://livedocs.adobe.com/flex/3/html/help.html?content=SQL_01.html
    (docs)
    #4
    there is an option now to create native installer for platform which could be send off-line. It asks user to overwrite content if application is already installed, etc
    #5
    please define "interact" with USB? as disk or interface to talk with some device? Air itself cannot talk to low level ports but could start native process (NativeProcess) to some application/tool/process that could act as middle-tier between your application and usb:
    http://www.adobe.com/devnet/air/flex/quickstart/articles/interacting_with_native_process.h tml
    kind regards,
    Peter

  • Adobe Air - Audio/Video questions

    I have several questions, but first I would like to say I know that FMS can record a stream to the server. I have developped a test application and understand how this works. My intent is to hopefully find a better solutions for my task. It seems that what I'm trying to do isn't standard if possible, and I am have no luck on finding anything on the web.
    Is it possible to get raw audio byte array? In C++ (Window OS) there are Waveform Functions that allow a process to capture audio in a byte array (waveInOpen). Is there simular functionality in Flash? That is, is there a way to get a byte array of the audio stream?
    Is it possible to get raw video byte array? I have found that you can draw video to a BitmapData type. This wouldn't give me a good solution. Again relating this to C++, is there an equivalent to Video Capture Macros (capSetCallbackOnVideoStream)? That is, is there a way to capture raw video byte array?
    Also, both of these needs to be going on while both audio/video are connected to a netstream.
    If both of these are possible, my questions would be can the same be done for remote Audio/Video from a remote computer? I assume that since a remote netstream is connected to a Video type it can be drawn to a BitmapData type, but how would you get audio data?
    My next step would be to send these byte arrays to an external app using Flash BinarySocket.
    Any direction, link, suggestions, and/or comment would be appreciated.

    Hi,
    note: I'm not expert
    #1
    yes, AIR uses SQLite (3.6.*.? now one exactly knows as it is undocumented and sqlite_version() native function will throw runtime error to be handled)
    #2
    it depends for what purpose it will be used and how, yes? e.g.:
    http://stackoverflow.com/questions/3160987/can-sqlite-handle-90-million-records
    #3
    http://www.adobe.com/devnet/air/flex/articles/air_sql_operations.html
    (User experience considerations with SQLite operations)
    http://livedocs.adobe.com/flex/3/html/help.html?content=SQL_01.html
    (docs)
    #4
    there is an option now to create native installer for platform which could be send off-line. It asks user to overwrite content if application is already installed, etc
    #5
    please define "interact" with USB? as disk or interface to talk with some device? Air itself cannot talk to low level ports but could start native process (NativeProcess) to some application/tool/process that could act as middle-tier between your application and usb:
    http://www.adobe.com/devnet/air/flex/quickstart/articles/interacting_with_native_process.h tml
    kind regards,
    Peter

  • Macbook Air (13") screen question

    Does the mid 2013 Macbook Air have any sort of coating on the screen?

    Jon P D
    Unfortunately I have not tried to play WoW on this MBA yet, it is realy a pain for my ears to listen to the fan noise from such a thin machine. And I also use iStat menus and temperatures like 98-100 C excite me even more. But as soon as I decide to game a bit - I'll post here ))
    wickedHangover
    Thank you very much for a professional advice ! This information is very usefull, because EVERYTIME I rise the question of high temperatures everyone sais "its ok dont worry, its mac, its Apple, so everything should be ok etc". And finaly I do hear about overheat issues. As for me, I ALWAYS use Just-Mobile Cooling Bar if I use the integrated monitor, otherwise I use Twelve South stand - when connected to an external display (both of these cooling pads provide passive cooling).
    So if you do not recommend stressing a work machine I will not do it for sure. I'll look for some other gaming solution...maybe iMac... or replace MBA with new thin MBP . . .  Or maybe Apple will intergrate GPU in the upcoming thunderbolt display lol ))))
    Otherwise it doesnt make much sence. 

  • AIR in DW-CS3: JavaScript Error Occurred

    I was just completing the AIR Application and Installer
    Settings using Dreamweaver CS3; when I clicked the "Create AIR
    File" button and received the message "whil executing onClick in
    AIRSettings.htm, a JavaScript error occurred".
    I have double checked every field but cannot find an error.
    Has this happened to anyone else? If so, how did you resolve the
    error? [email protected]

    I am facing the same issue. Did you solve it ? Anyone ? I
    tried to spotlight that file "AirSettings.htm" but nothing came
    up.

  • Macbook air hinge repair question please respond!!!!

    Hey everyone, I have a question that hopefully someone can answer I've never sent anything into apple repair so don't know if they're a pain. Anyway in 2008 I bought a macbook air off of a guy I knew, he informed me there was a flaw which was the bottom right hand side of the bezel looked like bent a little toward the user, the computer worked fine and I love it! Anyway after like 8 months I opened it up and the left hinge thing cracked and this little piece came off??? I walked into an apple store while travelling without the air and talked to a genius he said its a common defect and they would fix it. I called tech support told. My story including the bezel thing and they said they would fix it.. should I be worried they will get it see the bezel and say well fix the hinge only somehow? What do you guys think? They can't be as liberal as dell who. Will repair anything...I mean I suppose once they get it they'll have to replace the bezel anyway because it seems to go together. The computer and hinge work 100% but. Would be sweet if repaired.. any thoughts? Sry for typing I'm on my mobile. O and I bought the air for 1000 still loving it..

    I would suggest sending it in. I believe they will replace everything. They replaced parts on my MacBook once that I didn't think need replacing. Also, about six months ago, one fan went out in my current MacBook Pro. I called Apple on a Friday. Monday morning FedEx brought a box. The gal helped me pack it quick and she took it along back with her right away. Wednesday morning at 9:10AM she was back with it. Apple had replaced BOTH fans in it.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Macsimum News Associate Editor  Creator of 'Mac611 - Mobile Mac Support'

  • Air - Sqlite with Adobe Air insert data in memory, but do not record on the database file

    I have the code:
    var statement:SQLStatement = new SQLStatement();
    statement.addEventListener(SQLEvent.RESULT, insertResult);
    statement.addEventListener(SQLErrorEvent.ERROR, insertError);
    statement.sqlConnection = sqlConnection;
    statement.text = "insert into table values('"+TINome.text+"','"+TISerial.text+"') ";
    statement.execute();
    This run without error and the data is inserted (i dont know where), but when i see into database with firefox sqlite manager, the database is empty! But the Air continue run for a time like the data was recorded on the database file. I dont know what is happen with it.
    Help please!

    Toplink In Memory was developed by our project to solve this problem. It allows us to run our test either in memory or against the database.
    In memory, we basically stub out the database. This allows us to speed up our tests about 75x (In memory we run 7600 tests in 200 secs, it takes about 5 hours against the database). However, it throws away things like transactions, so you can't test things like rollback.
    In database mode, it just uses toplink, Another benefit of it though is that it watches all the objects created allowing an automatic cleanup of created test objects - keeping your database clean and preventing test interactions.
    We used HSQL running in memory previously, it worked fine. However, we needed to write scripts to translate our Oracle SQL into HSQL. Also, we had to override things like the data function in HSQL, and a few of our queries behaved unexpectedly in HSQL. We later abandoned it, as it became a lot of maintenance. It was about 10x faster than running against Oracle.
    Interestingly, we install oracle on all our developers machines too, tests run way faster locally, and developers feel way more comfortable experimenting with a local instance than with a shared instance.
    You can find the toplink in memory stuff at:
    http://toplink-in-mem.sourceforge.net/
    I provide all support for it. Doc is sketchy but I'm happy to guide you through stuff and help out where I can with it.
    - ted

  • AIR and performance questions

    Hey,
    I'm new to AIR mobile development although i have around a decades experience with Flash, but with AIR for mobile i'm a bit lost. So i was hoping someone can answer these questions for me...
    1. Is there currently no way to use a phones vibration with AIR? I remember seeing people asking this on these forums last year, and it still looks as if this extremely simple thing cannot be done? And if it cant, are there plans to have it in AIR 2.7?
    2. When i select GPU acceleration, does it cache all bitmaps automatically? Or do i still have to manually select "Cache as Bitmap" for everything i want cached? (i'm using Flash Pro CS5.5). Because it seems to have no effect on frame rates whatever i do here as long as GPU render mode is selected.
    3. Would i get better performance using vectors or bitmaps for graphics?
    4. Whats the texture size limit for Android and iOS before it can no longer be cached?
    5. Does it matter performance wise if JPG's and PNG's are used for graphics instead of bitmaps? (when i've not selected Cache as Bitmap).
    6. Whats the differences between a AIR for Android and AIR for iOS? I've noticed that for Android it supports use of the camera, for iOS it dont. Is there anything else?
    7. How can i embed a HD video in an AIR for Android app? i've seen this thread: http://forums.adobe.com/thread/849395?tstart=0
    but it's for AIR on iOS, i wouldn't think it's any different for Android, but i'm getting a blank screen when i use the code from that thread (and i'm testing on a Android phone too, not in Flash > Test Movie).
    Or if anyone has ANY tips for performance at all then i'd love to hear them

    Hello,
    I think that Colin may have answered a lot of your questions but here it is:
    1. There is currently no way to make the phone vibrate for within AIR. You can read this post on how to create an Android/AIR hybrid application which gives you extension access to some native functionality. Warning: it is somewhat advanced and not supported by Adobe
    http://www.jamesward.com/2011/05/11/extending-air-for-android/?replytocom=163323
    You can expect to have this functionality in AIR at some point in the future, perhaps not in 2.7
    2. in AIR for Android, there is no need to set GPU if you are only using bitmaps. Cache As Bitmap is only needed for vector art.
    3. Bitmaps would be better but performance is not the only consideration. Remember that memory is limited so bitmaps can use it all so vectors may be a good option if you have a lot of art. A great advantage of using AIR is that you have the option between the two. My recommendation would be that if your art is going to be animated, create it as bitmap or use cacheAsBitmap if it only moves on x and y axis and use CacheAsBitmapMatrix if it transforms in other way (rotation, size).
    4. The limit on Android was 1,024×1,024 last time I checked.
    5. JPGs are smaller in size but PNGs look better. A side note, because the PPI is so high on devices, everything looks great so you can get away with lesser quality assets. Test all options.
    6. The differences between the two platforms are minimal. Camera first but also Android lets you access the media library (where all the images taken by the device are stored) where iOS do not. In general Android is more open.
    7. Video is a very large topic. If you embed the video, you will have a black screen until it is fully loaded. I should say that I did a project with a 1 GB movie and it loaded right away. I have not used the StageWebView to display the movie. Keep in mind that the way the video is endoced matters a great deal (use baseline profile).
    Here is some sample code:
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.media.Video;
    import flash.events.NetStatusEvent;
    var connection:NetConnection;
    var video:Video;
    video = new Video();
    video.width = 480;
    video.height = 320;
    connection = new NetConnection();
    connection.addEventListener(NetStatusEvent.NET_STATUS, netConnectionEvent);
    connection.connect(null);
    function netConnectionEvent(event:NetStatusEvent):void {
    event.target.removeEventListener(NetStatusEvent.NET_STATUS,
    netConnectionEvent);
    if (event.info.code == "NetConnection.Connect.Success") {
    var stream:NetStream = new NetStream(connection);
    stream.addEventListener(NetStatusEvent.NET_STATUS, netStreamEvent);
    var client:Object = new Object();
    client.onMetaData = onMetaData;
    stream.client = client;
    // attach the stream to the video to display
    video.attachNetStream(stream);
    stream.play("someVideo.flv");
    addChild(video);
    function onMetaData(info:Object):void {}
    I would recommend looking at my book. I cover a lot of these topics in detail (and went through the same hurdles as you):
    http://oreilly.com/catalog/0636920013884
    (you can get it on Amazon too).

  • Air 3.7 (android)  javascript issue in stagewebview

    Hi
    I have simple javascript code runing in stagewebview:
    //  javascript atob() is used for  base64 decoding.
    var serializeObject = JSON.parse(atob("eyJjYWxsQmFjayI6IltTV1ZDYWxsQmFja11pbml0SlMiLCJtZXRob2QiOiJpbml0SlMiLCJh cmd1bWVudHMiOltdfQ=="));
    alert(serializeObject.method);
    publishing in AIR 3.5 -android,  the code works, but publishing in AIR 3.7 failed.
    thanks for any help in adavance!
    thanks,
    Jackie

    Hi Nimitja,
    Here is the sample application.
    https://www.dropbox.com/sh/r4f19h1gchvylcp/MVtXf83I5v
    (1) I used Flash cs6 with AIR 3.5 and 3.7
    (2) tested movie in cs6 (ctrl+enter), air 3.5 worked, but air 3.7 failed
    thanks,
    Jackie

  • Books on Adobe Air development using HTML/JavaScript

    Hi,
    I always been of the opinion that one of the signs of a healthy, viable technology is the availability of books and manuals (not just articles or short tutorials online) on how to use said technology. I'm interested in Adobe AIR development for Dekstops/Tablets but I have not been able to find any new books on the topic. Most of the existing books seems to date from 2008 and are targeted towards AIR 1.0-1.5, while the latest version of Adobe Air apparently is 3.5+. So my question is - Where are all the books?
    /Sincere Regards Kris

    quote:
    Originally posted by:
    pravinpatil23
    But can you please explain me when do I exactly use Flex Or
    HTML+JS Or Flash.
    This question gets asked about once a week. You
    can find my latest answer
    here
    and a little searching will dig up more opinions.
    quote:
    Can AIR applications(developed using HTML+Js) invoke a web
    service running on a different server
    An AIR application isn't hosted on a server, so all web
    servers are "foreign" to your AIR application. An AIR app does get
    downloaded from a server, most of the time, but it doesn't maintain
    some kind of special connection to that server.
    Because of this, there are no cross-domain restrictions in
    AIR like you have in a regular web browser.
    quote:
    Can AIR application(developed using HTML+Js) detect the
    connectivity of USB drive
    AIR does not allow low-level system access, and has very
    little in the way of platform-specific capabilities. So, you'd have
    to use a high-level, platform-agnostic way of checking for the
    drive, such as by looking around to see what files are available.
    Things like USB insert notifications are way outside the scope of
    AIR.
    quote:
    I want the data from Servlet to send back to HTML page where
    I can display it on the same HTML page where user entered his
    details.
    That question isn't on-topic here. Ask on a forum dealing
    with JSP servlets.

  • AIR Deployment stability questions

    I just published an AIR app from Flash CC 2014 and I'm viewing on my Kindle Fire. There are a few things that I see which I need to address before I finish the build. Since I'm new to AIR deployment I would think someone would give me a bit of knowledge here.
    1. The app was originally developed as an IOS app with the size of 1024 x 768 pixels, I notice on the Kindle Fire
    I have a lot of whitespace on the left and right
    2. When touching the buttons I have to hit a few times for the button to work
    3. Is there a way to make the app responsive so user can pinch and expand the app stage?

    Thanks for this as I need as much info as I can get. I was thinking, since the IOS version of this is just for an IPad would it make sense to resize the stage of the app to accommodate tablets like the KindleFire?
    I was going to do an IPhone version but I ran into the same problem as the buttons are way to small.
    I came a cross a chart of various Android tablet and phone sizes so another question would be if I can make the stage on app responsive so it can expand or retract with a user touch. Is this possible? As I see the scale option in the document properties of Flash but its greed out. So if I dont target small smartphones should I do one size for Android tablets?
    Can I have the stage be responsive?
    R

Maybe you are looking for

  • Canon 495 printer scanner not working after upgrade to maverick

    I am sorry I upgraded to Maverick.. My Canon printer/scanner does not work.  I upgraded the drivers, etc. I get an error message and the icons drop out as soon as they come up to auto scan or photo.

  • Expression using Map access not working....

    I am attempting to use the ability to access a Map by key from a binding expression on the jsp. I have extended HashMap and overridden the get method in order to return a Boolean from the get(key) method. This works: rendered="#{bean.enabledFunctionS

  • Can't use clob and blob

    I just created a new database using dbca with General Purpose as the template, as I've done before. All went well until I tried to create tables that used clob or blob datatypes. I kept getting the error "ORA-03001: unimplemented feature". What happe

  • Howto process non .jsp files wiht the jsp processor?

    I am building an application that uses a tag to include some resources to the page. This tag simple get in the context the bean assossiated with the tag and include it in its own stead. An engine process the request setting in the request scope a bea

  • How to run 2 same webcam models in labview.

    hello everyone, i was wondering that how can i run 2 same webcam models at the same time. Well i have been able to run 2 different webcam models at the sametime in the same VI but it gets confused when i try to use the same models. It  takes the imag