type

  1. MarkusR

    Wish Access Fields in Type at Runtime

    hello, it seems missing if we have a type like this one Type Data(a As String,b As Int, c As Float) dim test as Data i like to have access this struct via name (and index) test.Field("a") = "abc" test.Field("b") = 123 something like foreach field in test log(field) next
  2. icefairy333

    B4J Code Snippet get col type exactly with dbutils(ResultSetMetaData)

    dbutils 'version 1.20 Sub Process_Globals Type dbOptret (success As Boolean,msg As String) Public conpool As ConnectionPool Private curDbType As Int=0 Public DB_REAL, DB_INTEGER, DB_BLOB, DB_TEXT As String DB_REAL = "REAL" DB_INTEGER = "INTEGER" DB_BLOB = "BLOB"...
Top