Lines Matching refs:_sSQLString
413 Date DBTypeConversion::toDate(const ::rtl::OUString& _sSQLString) in toDate() argument
422 nYear = (sal_uInt16)_sSQLString.getToken(0,sDateSep,nIndex).toInt32(); in toDate()
425 nMonth = (sal_uInt16)_sSQLString.getToken(0,sDateSep,nIndex).toInt32(); in toDate()
427 nDay = (sal_uInt16)_sSQLString.getToken(0,sDateSep,nIndex).toInt32(); in toDate()
434 DateTime DBTypeConversion::toDateTime(const ::rtl::OUString& _sSQLString) in toDateTime() argument
441 Date aDate = toDate(_sSQLString); in toDateTime()
443 sal_Int32 nSeparation = _sSQLString.indexOf( ' ' ); in toDateTime()
445 aTime = toTime( _sSQLString.copy( nSeparation ) ); in toDateTime()
451 Time DBTypeConversion::toTime(const ::rtl::OUString& _sSQLString) in toTime() argument
460 nHour = (sal_uInt16)_sSQLString.getToken(0,sTimeSep,nIndex).toInt32(); in toTime()
463 nMinute = (sal_uInt16)_sSQLString.getToken(0,sTimeSep,nIndex).toInt32(); in toTime()
466 nSecond = (sal_uInt16)_sSQLString.getToken(0,sTimeSep,nIndex).toInt32(); in toTime()
468 ::rtl::OUString sNano(_sSQLString.getToken(1,'.',nIndex)); in toTime()