AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Suchfunktion Ergebnis der Suchanfrage

Ergebnis der Suchanfrage


Datum des Suchindex: Heute, 11:47

Parameter dieser Suchanfrage:

Suche in Thema: Mysql Typs (Null) Typ (Integer)
Suche alle Beiträge, die von "sx2008" geschrieben wurden
• Suchmethode: "Suche nach allen Begriffen"
• Nach Datum (firstpost) sortiert
• Zeige Treffer als Beiträge
Zeige 2 von insges. 2 Treffern
Suche benötigte 0.001s

Es liegen Ergebnisse in folgenden Bereichen vor:

  • Forum: Programmieren allgemein

    AW: Mysql Typs (Null) Typ (Integer)

     
      by sx2008, 25. Aug 2013
    If you want to transfer a Value that could be both a integer or NULL you have to use the data type "Variant".
    A Variant can contain different data type like integer, floats, booleans, strings.
    And a Variant can also be Null!
    This means that Variant is a nullable data type.
    To get or set the value of a field you can use the property Value.
    The Properties AsString, AsInteger, AsBoolean,... are...
  • Forum: Programmieren allgemein

    AW: Mysql Typs (Null) Typ (Integer)

     
      by sx2008, 25. Aug 2013
    // Fill a parameter with NULL
    QueryB.ParamByName('NewID').Value := Null;

    // Fill a field with NULL
    QueryB := Null;
    // alternative way to set a field to NULL
    QueryB.FieldByName('SomeField').Clear;

    // testing if a field is NULL
    if Query.FieldByName('SomeField').IsNull then ...


URL zu dieser Suchanfrage:

https://www.delphipraxis.net/dp_search.php?do=usersearch&search_username=sx2008&search_exact_username=1&search_sortby=dateline&search_resulttype=post&search_matchmode=0&searchthreadid=176295
Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:05 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz