Thread Leere Daten in Array ersetzen (23 answers)
Opened by Kean at 2011-09-16 13:25

FIFO
 2011-09-16 15:21
#152498 #152498
User since
2005-06-01
469 Artikel
BenutzerIn

user image
Da musst Du aufpassen: Wenn die DB "0" (nicht NULL) zurückgibt, wird dies ebenfalls als "" in der HList angezeigt.
Wenn das vermieden werden soll, dann sowas wie:

Code (perl): (dl )
1
2
3
4
5
$hlist->itemCreate(
    $zeile, $spalte, 
    -text => defined($daten[4]) ? $daten[4] : "", 
    -style => $style
);
Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"

View full thread Leere Daten in Array ersetzen