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 291-300 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
100C#SonstigesStartet die aktuelle Applikation neuvoid RestartApplication() { string[] FullNameSplit = Application.ResourceAssembly.FullName.Split((char)44); Process.Start(FullNameSplit[0] + ".exe"); Application.Current.Shutdown(); }View Update Delete
24CachéCaché-Spezifisch, NetzwerkSuperserver-PortW !,$ZU(172,0) ; z.B. 1972View Update Delete
294BigQueryDatenmengenDifferenzen anzeigenWITH a AS ( SELECT * FROM UNNEST([1,2,3,4]) AS n ), b AS ( SELECT * FROM UNNEST([4,5,6,7]) AS n ) SELECT * FROM a EXCEPT DISTINCT -- <------------------ SELECT * FROM bView Update Delete
296EXASOLDatenmengenDifferenzen anzeigenWITH a AS ( SELECT 1 AS n UNION ALL SELECT 2 AS n UNION ALL SELECT 3 AS n UNION ALL SELECT 4 AS n ), b AS ( SELECT 4 AS n UNION ALL SELECT 5 AS n UNION ALL SELECT 6 AS n UNION ALL SELECT 7 AS n ) SELECT * FROM a EXCEPT -- <------------------------------ SELECT * FROM bView Update Delete
289PL/pgSQLStringsFührende Nullen vor einer ZahlWITH cte_example AS ( SELECT 5 AS int_example UNION ALL SELECT 10 AS int_example UNION ALL SELECT 50 AS int_example ) SELECT int_example, RPAD(int_example::text, 3, '0'), LPAD(int_example::text, 3, '0') FROM cte_exampleView Update Delete
291SQLiteStringsFührende Nullen vor einer ZahlWITH cte_example AS ( SELECT 5 AS int_example UNION ALL SELECT 10 AS int_example UNION ALL SELECT 50 AS int_example ) SELECT int_example, substr('0000000'||ROW_NUMBER() OVER(ORDER BY int_example)||'00', -8, 8) AS example_result FROM cte_example ;View Update Delete
127MumpsKonsolenverwaltungEinlesen KonsoleneingabeWRITE !,"What's your name? " READ yournameView Update Delete
128PythonKonsolenverwaltungEinlesen Konsoleneingabeyourname = raw_input('What\'s your name? ')View Update Delete
21MumpsVariablenVar-Dump einer VariableZW test S A(1,2)="Inhalt" ZWrite A Set ^GLOBAL1("sub1","sub2")="content" ZW ^GLOBAL1View Update Delete
302Yii2SessionsWerte in Session speichern und lesen\Yii::$app->session->set('user.attribute',$value); \Yii::$app->session->get('user.some_attribute');View Update Delete