Manage PlItems

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.

Advanced Search
Displaying 151-160 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
244T-SQLDatenbankSQL SELECT Statische WerteSELECT * FROM ( VALUES (1, 2), (3, 4) ) AS q (col1, col2) GO -- the same as: SELECT 1 AS col1, 2 AS col2 UNION ALL SELECT 3 AS col1, 4 AS col2 GO -- col1 | col2 -- =========== -- 1 | 2 -- ----------- -- 3 | 4 View Update Delete
253T-SQLMetadatenFremdschlüssel auflistenSELECT [FK_NAME] = obj.name ,[Schema_Name] = sch.name ,[Table] = tab1.name ,[Column] = col1.name ,[Referenced_Schema_Name] = sch2.name ,[Referenced_Table] = tab2.name ,[Referenced_Column] = col2.name FROM sys.foreign_key_columns fkc INNER JOIN sys.objects obj ON obj.object_id = fkc.constraint_object_id INNER JOIN sys.tables tab1 ON tab1.object_id = fkc.parent_object_id INNER JOIN sys.schemas sch ON tab1.schema_id = sch.schema_id INNER JOIN sys.columns col1 ON col1.column_id = parent_column_id AND col1.object_id = tab1.object_id INNER JOIN sys.tables tab2 ON tab2.object_id = fkc.referenced_object_id INNER JOIN sys.columns col2 ON col2.column_id = referenced_column_id AND col2.object_id = tab2.object_id INNER JOIN sys.schemas sch2 ON tab2.schema_id = sch.schema_id View Update Delete
69C#GUI, .NET-WPFRessource aus separater Style-Ressource var tbo = new TextBlock { Style = (Style)Application.Current.FindResource("MyTextBlockStyle") };View Update Delete
75C#TypenkonvertierungString in Integer konvertierenint MyInt if (Int32.TryParse("125", out MyInt)) { // Parsing was successfull } View Update Delete
84C#VariablenDarstellung eines Unicode Zeichens in C#//Hier wird in die Variable "semikolon" das Semikolon eingetragen var semikolon = (char)59;View Update Delete
85C#ArrayDeklarieren eines Arrays in C#// Array direkt befüllen string[] stringArray = {"a", "b", "c"}; // Array mit fester Länge string[] stringArray = new string[5];View Update Delete
86C#VariablenParsen von Datentypenvar d = (double)integer; var myButton = (Button)object;View Update Delete
87C#StringsString Leerstellen entfernenstring myString = " test "; Console.WriteLine(myString.Trim()); //Gibt: "test" aus.View Update Delete
88C#StringsString auf Wunschlänge zuschneidenstring myString = "Benzinverbrauch"; Console.WriteLine(myString.Substring(2, 8)); //Ausgabe: "nzinverb"View Update Delete
89C#KontrollstrukturenSwitch / Case Anweisung int i = 1; switch (i) { case 1: Console.WriteLine("Fall 1"); break; case 2: Console.WriteLine("Fall 2"); break; default: Console.WriteLine("Standard Fall"); break; }View Update Delete