Share via


SqlSystem.logfileWrite(String) Method

Definition

Writes a text string into the standard SQL error logfile.

public:
 virtual void logfileWrite(System::String ^ _Text);
public virtual void logfileWrite (string _Text);
abstract member logfileWrite : string -> unit
override this.logfileWrite : string -> unit
Public Overridable Sub logfileWrite (_Text As String)

Parameters

_Text
String

The text (for example, a bookmark) to write to the logfile.

Remarks

Following an error situation of any kind (which is logged in the logfile), you may want to insert a personal bookmark that explains the current scenario.

The following example demonstrates the logfileWrite method.

static void myExample(Args _args) 
{ 
    SqlSystem SqlSystem; 
    SqlSystem = new SqlSystem(); 
    SqlSystem.logfileWrite("Recheck the returned data."); 
}

Applies to