Defines format for the DateTime fields.
vDateTimeFormat = LogFile.DateTimeFormat
LogFile.DateTimeFormat = vDateTimeFormat
String
strftime function is used to convert datetime
fields to a string. You can use next tags to specify format for datetime
fields:
| %Y | Year with century, as decimal |
| %y | Year without century, as decimal number (00 – 99) |
| %m | Month as decimal number (01 – 12) |
| %d | Day of month as decimal number (01 – 31) |
| %W | Week of year as decimal number, with Monday as first day of week (00 – 53) |
| %H | Hour in 24-hour format (00 – 23) |
| %I | Hour in 12-hour format (01 – 12) |
| %M | Minute as decimal number (00 – 59) |
| %p | Current locale’s A.M./P.M. indicator for 12-hour clock |
| %S | Second as decimal number (00 – 59) |
| %x | Date representation for current locale |
| %X | Time representation for current locale |
LogFile - DateTimeFormat sample |
Dim LogFile
'Create LogFile object
Set LogFile = CreateObject("ScriptUtils.LogFile")
LogFile.TemplateFileName = "D:\LogFiles\LG%y%m%d.Log"
LogFile.LogLine "Default datetime."
LogFile.DateTimeFormat = "%d.%m.%Y+%H:%M:%S"
LogFile.LogLine "Line 1"
LogFile.DateTimeFormat = "%m/%d/%Y %H:%M:%S"
LogFile.LogLine "Line 2"
LogFile.DateTimeFormat = "%m/%d/%Y %I:%M:%S%p"
LogFile.Log Now, Date
Output (contents of D:\LogFiles\LG001213.Log file)
#Software: PSTRUH ScriptUtilities Log file
#Version: 1.0
#Date: 2000-12-13+12:39:17
#Fields: datetime
2000-12-13+12:39:17 Default+datetime.
13.12.2000+12:39:17 Line+1
12/13/2000 12:39:17 Line+2
12/13/2000 12:39:17PM 12/13/2000 12:39:17PM 12/13/2000 12:00:00AM |
ArraySeparator, DateTimeFormat, Encode, FieldSeparator, FieldsHeaders, FileBegin, FileName, IsOpen, LineBegin, LocalDateTime, TemplateFileName
Hi-performance text file logging for ASP and ASP.Net, VBScript, VBA, VB5/6, VB and C# applications. Lets you create daily/weekly/monthly log files with variable number of logged values and extra timing and performance info.
LogFile is a COM class specially designed as a free-threaded, hi-performance logging object in Application scope of ASP/ASP.Net pages. It also works with other script engines in VB Script and JScript (ASP, ASP.Net, WSH, CHM, HTA), VB Net, Visual basic (VBA - VB 5, VB 6, Word, Excel, Access, …), C#, J#, C++, ASP, ASP.Net, Delphi and with T-SQL OLE functions - see Use ByteArray object article. You can also use the object in other programming environments with COM support, such is PowerBuilder.
Source code for LogFile is available within distribution license, please see License page for ASP file upload and ScriptUtilities.
© 1996 - 2009 Antonin Foller, Motobit Software | About, Contacts | e-mail: info@pstruh.cz