|
|
Line 2: |
Line 2: |
| [[Profiler Object:Reference|← Profiler Object Reference]] | | [[Profiler Object:Reference|← Profiler Object Reference]] |
|
| |
|
| {| class="mw-collapsible" cellspacing="2" style="background-color:#f9f9f9; border:1px solid #aaaaaa; font-size:9pt; color:#0645ad; padding:8px 8px;" | | {{ProfilerObjectNav}} |
| ! style="text-align:left; color:black; border-bottom:1px solid #aaaaaa;"|'''Profiler Object Interface Navigation'''
| |
| |-
| |
| | style="padding-right:220px;"|
| |
| |-
| |
| |[[Profiler Object:Initialization|Initialization]]
| |
| |-
| |
| |[[Profiler Object:Object Information|Object Information]]
| |
| |-
| |
| |[[Profiler Object:Enumeration Listing and Parsing|Enumeration Listing and Parsing]]
| |
| |-
| |
| |[[Profiler Object:Column Specification|Column Specification]]
| |
| |-
| |
| |[[Profiler Object:Initiate Profiling|Initiate Profiling]]
| |
| |-
| |
| |[[Profiler Object:Data Input|Data Input]]
| |
| |-
| |
| |[[Profiler Object:Profiling|Profiling]]
| |
| |-
| |
| |[[Profiler Object:Table-Based Statistics|Table-Based Statistics]]
| |
| |-
| |
| |-
| |
| |
| |
| {| class="mw-collapsible mw-collapsed" style="width:100%;" | |
| |- align="left"
| |
| ! style="color:black; text-align:left;"|[[Profiler Object:Column-Based Statistics|Column-Based Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based String Statistics|Column-Based String Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Numeric Statistics|Column-Based Numeric Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Date/Time Statistics|Column-Based Date/Time Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Name Statistics|Column-Based Name Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based State/Province Statistics|Column-Based State/Province Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Zip/Postal Code Statistics|Column-Based Zip/Postal Code Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Country Statistics|Column-Based Country Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Email Statistics|Column-Based Email Statistics]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Phone Statistics|Column-Based Phone Statistics]]
| |
| |-
| |
| |}
| |
| |-
| |
| |
| |
| {| class="mw-collapsible mw-collapsed" style="width:100%;"
| |
| |- align="left"
| |
| ! style="color:black; text-align:left;"|[[Profiler Object:Iterators|Iterators]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Value Frequency Table Iteration|Column-Based Value Frequency Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Value Length Frequency Table Iteration|Column-Based Value Length Frequency Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Value Pattern Table Iteration|Column-Based Value Pattern Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Value Date/Time Table Iteration|Column-Based Value Date/Time Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Value SoundEx Table Iteration|Column-Based Value SoundEx Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Word Table Iteration|Column-Based Word Table Iteration]]
| |
| |-
| |
| |[[Profiler Object:Column-Based Word Length Table Iteration|Column-Based Word Length Table Iteration]]
| |
| |-
| |
| |}
| |
| |-
| |
| |
| |
| {| class="mw-collapsible mw-collapsed" style="width:100%;"
| |
| |- align="left"
| |
| ! style="color:black; text-align:left;"|[[Profiler Object:Result Codes|Result Codes]]
| |
| |-
| |
| |[[Returned Result Codes:APIs#Profiler Object|Returned Result Codes]]
| |
| |-
| |
| |[[Result Codes]]
| |
| |}
| |
| |}
| |
|
| |
|
|
| |
|
Line 104: |
Line 27: |
| |Syntax=profiler->SetColumn(columnNameStr, valueString); | | |Syntax=profiler->SetColumn(columnNameStr, valueString); |
| |C=mdProfilerSetColumn(profiler, ColumnName, ColumnValue); | | |C=mdProfilerSetColumn(profiler, ColumnName, ColumnValue); |
| |.Net=profiler.SetColumnSize(ColumnName, ColumnValue); | | |.Net=profiler.SetColumn(ColumnName, ColumnValue); |
| }} | | }} |
|
| |
|
← Profiler Object Reference
For each record to be profiled, call SetColumn or SetColumnNull for each column. After the values for all columns have been specified, call AddRecord to submit the record for profiling. Note that if SetColumn or SetColumnNull are called more than once for the same column before AddRecord is called, then the last function call's data will be used. Also, if neither SetColumn nor SetColumnNull are called before AddRecord, then the column is assumed to contain a NULL (i.e., the same as if you called SetColumnNull for that column.)
SetColumn
This function sets the value of the specific column.
This function takes two parameters.
Parameters
Name
|
Data Type
|
Description
|
ColumnName
|
String
|
Column Name to set the value.
|
ColumnValue
|
String
|
Value for a specified column.
|
Syntax
|
profiler->SetColumn(columnNameStr, valueString);
|
C
|
mdProfilerSetColumn(profiler, ColumnName, ColumnValue);
|
.Net
|
profiler.SetColumn(ColumnName, ColumnValue);
|
SetColumnNull
This function sets the Null value of the specific column.
This function takes one parameter.
Parameters
Name
|
Data Type
|
Description
|
ColumnName
|
String
|
Column Name to set the value to NULL.
|
Syntax
|
profiler->SetColumnNull(ColumnName);
|
C
|
mdProfilerSetColumnNull(profiler, ColumnName);
|
.Net
|
profiler.SetColumnNull(ColumnName);
|
AddRecord
This function submits the record’s column values for profiling. No Parameters are required. After calling AddRecord, the result for the current record will be available using GetResults.
Syntax
|
profiler->AddRecrod();
|
C
|
mdProfilerAddRecord(profiler);
|
.Net
|
profiler.AddRecord();
|
GetResults
This function retrieves result codes for each column in the submitted record. This should be called after AddRecord.
This function accepts one Parameter.
Parameters
Name
|
Data Type
|
Description
|
ColumnName
|
String
|
Column Name to get the result codes.
|
Return Value
This returns a result codes specific to a column in string format.
Syntax
|
profiler->GetResults(ColumnName);
|
C
|
resultStr = mdProfilerGetResults(profiler, columnstr);
|
.Net
|
resultStr = profiler.GetResults(columnstr);
|