Profiler Object:Column-Based Phone Statistics: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 98: | Line 98: | ||
{{Object Syntax | {{Object Syntax | ||
|Syntax=profiler->GetColumnPhoneInvalidCount(columnNameStr | |Syntax=profiler->GetColumnPhoneInvalidCount(columnNameStr); | ||
|C=integer = mdProfilerGetColumnPhoneInvalidCount(profiler,columnNameStr); | |C=integer = mdProfilerGetColumnPhoneInvalidCount(profiler,columnNameStr); | ||
|.Net=integer = profiler.GetColumnPhoneInvalidCount(columnNameStr); | |.Net=integer = profiler.GetColumnPhoneInvalidCount(columnNameStr); |
Revision as of 20:15, 2 February 2015
These statistics are only accumulated for DataTypePhone columns. See ProfilerDataType Enumerations for details. They should only be retrieved after calling the ProfileData function.
GetColumnPhoneInvalidCount
This function returns a column's number of records that contain non-US or non-Canadian phone numbers. Specifically, the numeric pattern doesn't correspond with the US/Canadian phone numbering system.
This function takes one parameter.
Name | Data Type | Description |
---|---|---|
ColumnName | String | Column Name to get the number of records that contain non-US or non-Canadian phone numbers. |
Syntax | profiler->GetColumnPhoneInvalidCount(columnNameStr); |
---|---|
C | integer = mdProfilerGetColumnPhoneInvalidCount(profiler,columnNameStr); |
.Net | integer = profiler.GetColumnPhoneInvalidCount(columnNameStr); |