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 91-100 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
51T-SQLDatenbankAlle angelegten Tabellen anzeigenSELECT T.TABLE_CATALOG ,T.TABLE_SCHEMA ,T.TABLE_NAME ,T.TABLE_TYPE FROM INFORMATION_SCHEMA.TABLES TView Update Delete
268T-SQLEncoding / DecodingChecksummeSELECT [CHECKSUM_1] = CHECKSUM(Column1, Column2) FROM TableAView Update Delete
272MS Access SQLDatenbankNULL Wert eines Feldes übersteuernSELECT FieldA ,Nz([FieldB,"This field is null") As FieldB_Nz FROM TableAView Update Delete
299PL/pgSQLDatenbankAlle DatenbankenSELECT "oid", datname, -- database name datdba, "encoding", datcollate, datctype, datistemplate, datallowconn, datconnlimit, datlastsysoid, datfrozenxid, datminmxid, dattablespace, datacl FROM pg_catalog.pg_database WHERE datistemplate = FALSE -- do not list template0, template1, ... ;View Update Delete
116DelphiStringsString nach einem Teilstring durchsuchensearchFor:='this'; text:='this is a simple text'; if pos(searchFor,text)>0 then begin ShowMessage('found'); end;View Update Delete
221DelphiStringsPosition eines Teilstrings findensearchFor:='simple'; text:='this is a simple text'; ShowMessage(IntToStr(pos(searchFor,text))); // 11View Update Delete
14MumpsArrayArray definierenS arr("dim1","dim2")="value" Set arr("dim1",99)=187 ; Persistent, will be saved with prefix ^: S ^save("dim1","dim2")="saved value"View Update Delete
165MumpsVariablenAuflistung aller VariablenS A="This is a test" Set b=1 ZW ZWriteView Update Delete
95C#SonstigesProgramm mit Parameter startenpublic void StartApp(string filePath, string arguments) { var newProcess = new Process(); newProcess.StartInfo.FileName = filePath; newProcess.StartInfo.Arguments = arguments; newProcess.Start(); }View Update Delete
90C#SonstigesMultithreading in einer Anwendungpublic MainWindow() { var newThread = new System.Threading.Thread(doMethode); newThread.Start("Hallo Welt!"); } private void doMethode(object message) { Console.WriteLine(message); }View Update Delete