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 271-280 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
273T-SQLStringsLeerzeichen vor/hinter String entfernenSELECT LTRIM(RTRIM(' x text x '))View Update Delete
274PythonStringsLeerzeichen vor/hinter String entfernenmyText = " x text x \r\n" print myText.strip()View Update Delete
275PL/pgSQLDatenbankStored Procedure anlegen/löschenCREATE OR REPLACE FUNCTION increment(i INT) RETURNS void AS $$ BEGIN INSERT INTO accounts (id,name, balance) VALUES (i, 'Test', 1200); END; $$ LANGUAGE plpgsql; DROP FUNCTION increment(i INT);View Update Delete
276T-SQLDatenbankStored Procedure anlegen/löschenCREATE PROCEDURE increment(@i INT) AS BEGIN INSERT INTO accounts (id,name, balance) VALUES (i, 'Test', 1200); END; View Update Delete
277PL/pgSQLDatenbankDatenbankobjekte KommentarCOMMENT ON FUNCTION increment(i INT) IS 'This is a comment';View Update Delete
278PowerShellFilehandlingPrüfen ob Verzeichnis existiert$myFolder = "C:\TEMP" if ((Test-Path $myFolder) -eq $true) { write-host "Folder exists!" } else { write-host "Folder doesn't exist!" }View Update Delete
279T-SQLDatum, ZeitGestriges DatumSELECT GetDate() SELECT DATEADD(d, -1, GetDate()) SELECT GetDate()-1View Update Delete
280PythonFilehandlingPrüfen ob Verzeichnis existiertimport os.path from os import path myFolder = "/tmp/test" if path.exists(myFolder) & path.isdir(myFolder): print "Folder exists!" else: print "Folder doesn't exist!"View Update Delete
281PythonFilehandlingVerzeichnis erstellenimport os myFolder = "/tmp/test" try: os.mkdir(myFolder) except OSError: print ("Error creating directory: %s" % myFolder) else: print ("Directory created: %s " % myFolder)View Update Delete
282PowerShellDatum, ZeitGestriges Datum$d=(Get-Date).AddDays(-1) $output=Get-Date $d -format "yyyy-MM-dd" # 2014-02-27 View Update Delete