How can I take minutes from mysql date format

how can I take minutes from mysql date format??
example 10:30:00 is stored in my sql and I want to create 3 variables which will store hours, minutes and seconds..
Cheers..

"use application date format" is the choice you want.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
-------------------------------------------------------------------

Similar Messages

  • Lost home PC with my iTunes account on it in a home fire.  How can I take everything from my iPhone 4 and put it on my new PC?

    Lost home PC with my iTunes account on it in a small home fire.  How can I take everything from my iPhone 4 and put it on my new PC?  Is this even possible?  iPhone 4 / new PC running Win XP Pro.  I have backed up to iCloud recently so the info is out there, just need to bring it down onto my PC....
    Need HELP.............

    Copy from iPod to computer
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    The sync to iPhone
    iTunes: Syncing media content to iOS devices and iPod

  • Since the iPod Lightning connection is not supported, how can you take videos from your iPod 5th Gen to your tv?

    Since the iPod Lightning connection is not supported, how can you take videos from your iPod 5th Gen to your tv?

    Lightning TV out
    - Via Airplay to an Apple TV.
    or one of these cables.
    - http://store.apple.com/us/product/MD826ZM/A/lightning-digital-av-adapter?fnode=3 a
    - http://store.apple.com/us/product/MD825ZM/A/lightning-to-vga-adapter?fnode=3a

  • How can I take pictures from my Iphone and upload them in my computer ?

    How can I take pictures from my Iphone and upload them in my computer ?

    iOS: Importing personal photos and videos from iOS devices to your computer

  • How can i take music from my iphone an add it to my mac

    How can I take the music from my iphone or someone elses an add it to my mac?

    "How can I take the music from my iphone"
    The sync is one way - computer to iphone.  The only exception is itunes purchases.  File:Devices>Transfer Purchases
    "or someone elses "
    Not legal.

  • How can I take music from an USB and transfer it to the iPod? It tells me use use itunes to sync but the music is on an USB drive. It had worked in the past. Tks

    How can I transfer music from an USB drive to the iPod. I can see the music and play it on the computer, but the iPod tells me to use iTunes to sync. The music is not on iTunes. It has worked in the past.....tks

    These are just playlists. The songs there are really not duplicates of the songs. They are just a different location for accessing them. Some playlists can be deleted, some cannot. Ones that are created by iTunes cannot be deleted. Ones that you create can be. The Recently Added and the 90's cannot.

  • How can I take text from a webpage that is in multiple rows and move it into a single row in Excel?

    I need help figuring out how to take data from internet pages and enter it into one single row in an excel, or numbers if that is the easier way to go.  I was also told access might be good to use.  Basically I am going to chamber of commerce page and wanting to extract the member listing and enter in a database in a single line.  The  data is in different numbers of lines as you will see below (info edited to take out personal info). So I want to take the  name of business, business owner, address, city, state, zip, and phone and put it into one line on a spreadsheet.  I want to do this many times over. I think there is a way to do it through apple script and automator, but I have not been successful after 2 weeks of trying and searching.  I have over 800 listings and I surely don't want to go through and do them one at a time.  Any suggestions?
    Data from website:
    Westrock Coffee
    Mr.
    Collins Industrial Place
    North Little Rock, AR 72113
    Phone:
    Send Email
    Member Since: 2011
    Sweet Creations by DJ
    Ms. J
    allace Bridge Road
    Perryville, AR 72126
    Phone:
    Fax:
    Send Email
    Member Since: 2013
    See Also Woman Owned and/or CEO
    Premium Refreshment Service
    Mr. E
    est Bethany Road
    North , AR 72117
    I want it to look like this
    Company name, owner name, address, city, state, zip, phone
    How can I get the extra data out of the way and remove the format so that it will go into excel?  Thanks for any help you can provide.  I am not to savvy with code, but I got a friend who is an IT guy that can help.  Thanks again

    So, basically, create 800 individual entries, each one containing everything from business name through the phone (not fax) number, add some commas and spaces to entries, and then put each entry on a separate line?
    1. Go to website page such as this one-- http://www.littlerockchamber.com/CWT/External/WCPages/WCDirectory/Directory.aspx ?ACTION=newmembers --which seems formatwise very close to what you're trying to scrape.
    2. Cmd-A to select all. Cmd-C to copy it to clipboard.
    3. Open freeware TextWrangler. Cmd-V to paste info from clipboard into a blank TW document.
    4. Remove lines from top and bottom so that only membership list remains.
    5. Process lines to remove everything from "Fax" line through "See Also" line. Only business name through phone number will remain in the file.
    --A. TW > Text > Process Lines containing . . .
    -----(check "Delete matched lines"; uncheck all others)
    -----Enter "Send Email" in the search box.
    -----Click Process.
    --B. Repeat 5A for other lines to be removed
    ------Member Since
    ------See Also
    ------Fax
    6. Insert markers to separate entries:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: \r\r\r\r
    ------in replace box: \r***
    ------Click Replace All
    7. Remove remaining blank lines:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: \r\r
    ------in replace box: \r
    ------Click Replace All
    8. Add comma and space at end of each line:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: $
    ------in replace box: ,  (comma space)
    ------Click Replace All
    9. Remove all returns:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: \r
    ------in replace box: (leave blank)
    ------Click Replace All
    10. Insert returns in place of markers:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: \*\*\*,  (backslash asterisk backslash asterisk backslash asterisk comma space)
    ------in replace box: \r
    ------Click Replace All
    11. Remove trailing comma and blank on each line:
    TW: Search > Find . . .
    ------(check "Wrap around" and "Grep")
    ------in Find box: , $ (comma space dollar sign)
    ------in replace box: (leave blank)
    ------Click Replace All
    Import this text file into Excel or Numbers.

  • HT1296 How can I take photos from my computer and send it to my ipad

    How can I transfer my photos from my computer which is in my photo library on my Dell to my new IPAD? I have an app called Sky Drive but no help I have iCloud also. Can someone please help me or do I have to sit and send one photo at a time from my computer to my new 3rd generation IPAD. Please Help. Thank You Michelle Elia Mistye1945  

    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • How can I dynamically change the Application Date Format?

    Hi everyone...
    In my application (v 3.2) I let the user set the application date format dynamically through a "preference" value they can change on the go.
    I then take the format they pick and assign their value (ie: DD-MON-YYYY) and pad 'HH:MI' to it and use this as the PICK_DATE_FORMAT_MASK which works great for most date pickers.
    The problem I have is that some date picker I use in the application don't require the HH:MI, they simply need the DD-MON-YYYY part. Could I use the NLS_DATE_FORMAT for this? Would I then be able to use date pickers with the "use application date format"? It doesn't seem to work for me.
    In other words, I basically need 2 date formats for my application date pickers; 1 for simply the dates and 1 for dates including time. And these 2 formats are chosen by the user by setting an application preference dynamically at run time.
    Not sure if I make sense here....any idea?
    Thanks!
    Francois

    "use application date format" is the choice you want.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • What exactly is using data and how can i keep it from using data when im not using my phone?

    So i have an iphone 4 and i have used a lot of data this month(like almost 2GB) and i have barely touched my phone outside of wifi areas. I always shut down any apps that use data like youtube, funnypics, facebook, etc. but i do play some games during my breaks at work but they dont require data to play so to my knowledge those games arent using data(or are they?) i just need some help figuring out exactly what on my phone is using data all the time so i can turn it off. Is it icloud? Emails on auto update? Offline game apps(minecraft, sonic dash, the Mr. Series games?) Do all apps use data regardless? Somebody please answer me. And No im not buying a bigger data plan. 2GB is my limit but it seems as though i am hitting that easily with my iphone but the rest of my familyis usually miles away from 2GB and they all have Samsung Galaxy S4s.

    My first stop would be in Settings > Cellular if you are on iOS 7.  This has a lot of goodstuff. you can turn off cellular data as a who, see your current usage and even see which apps have used data and how much.  You can even turn off individual apps form using cellular data (restricting them to wifi only).
    I hope this helps!

  • How can i take pictures from a backup file

    I attempted to update my ipod today (finally) and i was surprised to find the update would fail with error 9
    in order to get around this, i had to restore my ipod touch, which erased all data such as apps, music, and pictures
    the music i had all backed up, and have already replaced on my ipod, however i was smart enough to back up all of the ipod's contents before i did the restore, specifically so i would be able to get the pictures off of the backup, and put them on the freshly updated ipod
    my question is, how would i get these pictures from the outdated backup, and put them on the updated ipod, without restoring the entire backup and ending up back where i started. I attempted to use a third party program already, however the program would not open.
    much help plz

    no
    You should be importing them regularly as you would with any digital camera.
    iOS: Importing personal photos and videos from iOS devices to your ...

  • How can I take info from a PDF file on iPhone 5.

    Hi
    I get work related PDF files on my I phone 5
    But to take the telephone number off the viewing file island put it into the phone is very cumbersome especially when out all day.
    On my bb I could see the viewing file and text version which would allow me to call the number straight from there.
    Is there a way of doing this on the I one 5 please !Thanks

    Yes. It's such a pain to copy and paste the number in the PDF file and put into the phone. Bb would high light the number and call.
    Is there a way to view the file as text. When you get an SMS if someone sends a number it's highlighted. You tap it and you get option to call or cancel. Thats what i need from the PDF please

  • How can i take input from user?

    class input{
    public static void main(String args[]){
    int i,j,result;
    //i want to take input here from user.
    result=i+j;
    System.out.println(result);
    }

    here's the code which takes input of i , j from user and adds it
    <code>
    public static void main(String[] args)
              int i=0;
              int j=0;
              String s = null;
              System.out.println("Enter value of 'i'");
              InputStreamReader isr = new InputStreamReader ( System.in );
              BufferedReader br = new BufferedReader ( isr );
              try
              s = br.readLine ();
              i=Integer.parseInt(s);
              System.out.println("Enter value of 'j'");
              isr = new InputStreamReader ( System.in );
              br = new BufferedReader ( isr );
              s = br.readLine ();
              j=Integer.parseInt(s);
              System.out.println("Enter value of 'i+j ='"+(i+j));
              catch(Exception e){}
    </code>

  • How can I "Take it from the Top" ?

    I have coded a simple applet, using Buttons and the Graphics method.
    The applet runs vertically longer than a single screen's height,
    so the vertical scrollbar on my browser windo goes into action.
    There are bottons running up and down the page.
    When a button is pressed, an image is displayed at (0, 0) for a screen's width and height.
    The problem arises when one of the buttons toward the bottom of the page is pressed.
    The image gets "displayed" at (0, 0), but I wouldn't know it because I am looking at the bottom
    part of the graphical display.
    Is there a method which will reposition the display to the top of the page?
    Perhaps a method regulating the main scrollbar to the browser window?
    HTML would allow me to activate an anchor positioned at the top of the page.
    This is the kind of functionality which would work in this case.

    >
    This sound more easily achieved than the one above (for me).>This comment confused me since the approach outlined in that reply, and the next one, seems to pursue neither of the ideas offered.
    The first part of my idea might be expressed as..
    // <applet code='BigScrollApplet' width='400' height='300' ></applet>
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class BigScrollApplet extends JApplet implements ActionListener {
        JLabel imageLabel;
        @Override
        public void init() {
            JPanel mainGui = new JPanel(new BorderLayout(3,3));
            mainGui.setBorder(new
                javax.swing.border.EmptyBorder(2,2,2,2));
            JPanel buttons = new JPanel( new GridLayout(0,1,1,1) );
            for (int ii=0; ii<500; ii++) {
                JButton button = new JButton("Image " + (ii+1));
                button.addActionListener(this);
                buttons.add( button );
            JScrollPane scrollPane = new JScrollPane(
                buttons,
                JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                JScrollPane.HORIZONTAL_SCROLLBAR_NEVER );
            mainGui.add( scrollPane, BorderLayout.WEST );
            imageLabel = new JLabel(
                "'Image' appears HERE!",
                JLabel.CENTER);
            // for the real applet, this label would be
            // in it's own scroll pane.
            mainGui.add( imageLabel, BorderLayout.CENTER );
            add(mainGui);
            validate();
        @Override
        public void actionPerformed(ActionEvent ae) {
            imageLabel.setText( ae.getActionCommand() );
    }Have a look over this, then carefully read what I wrote, again. Let us see if you get it the second time around. (But for just 2 dukes, my patience will not last long..)
    Edit 1:
    Added @Override notation to init() method.
    Edited by: AndrewThompson64 on Jun 27, 2009 6:13 AM
    Edit 2:
    Changed 'this reply' to 'that reply' in 1st sentence - so it makes sense.
    Edited by: AndrewThompson64 on Jun 27, 2009 6:15 AM

  • How can I copy/paste from mail without format?

    This has been an annoying feature since I upgraded, finally bugged me enough to ask for help.
    I receive a weekly newsletter that is formatted into paragraphs with multiple columns. I usually copy parts that I think my son would be interested in, then email it to him. The problem is, when I paste it into mail it retains its formatting, including the shrunken width of the original columns. When I click the text a black, rectangular box appears around it, which I have no control over.
    This also happens in Safari when I copy news articles to pass on. It is extremely annoying, and I can't figure out a way to stop Lion from doing that. Switching over to text (non-html) is not an option, since I then lose the hypertext links included in the articles, as well as the images.

    Edit > Paste and Match Style. This matches the format in the text window you are pasting into, rather than the format you are copying from.

Maybe you are looking for

  • ATA vs VG202 vs VIC3-2FXS-E/DID & Wireless

    What is best solution moving forward? Fax server probably two years out. Background: I have 34 locations 30 locations have 2 analog devices 4 Operations have 26, 14, 15, 10 analog devices Currently we use ATA 188 and 186 and one VIC2-2FXS We Have int

  • Problem in Purchase Order Attachments

    Hi Team.. I have a problem, we use the function to attach file in purchase orders (Services for Object > Create Attachment) We can attach files and after we can see them without problems. But after the days pass... and we want to see the attachment a

  • Shared services and workspace login error in epm 11.1.2.3

    Hello, When click on the url of shared services and workspace for epm 11.1.2.3 showing the below error as soon. "Internet explorer can not display the webpage error" Tried with all supported browsers Please suggest all possibles solutions.. Thanks

  • DSL/ Col Adj/ B&W section missing in Develop module

    Hi there, I'm probably being an idiot here (usually the case) but I seem to have lost the DSL/ Col Adj/ B&W section down the right hand side in the develop module. Running top to bottom I have: Basic Tone Curve Split Toning Detail Lens Corrections Ef

  • How can i read Object serialized in delphi ?

    anyone has got any ideas how can i read serialized object created by delphi and was serialized in a file