SqlSystem.logfileWrite(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.");
}