]> saetta.ns0.it Git - rust/zakform/commitdiff
c2rs: added support for dbtype.
authorAndrea Zagli <azagli@libero.it>
Sun, 21 Jan 2024 14:31:07 +0000 (15:31 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 21 Jan 2024 14:31:07 +0000 (15:31 +0100)
src/bin/c2rs.rs

index fe9e9217c2be1cd7fe3f3b233e5dca84b6957fcd..7d105381d74a47e654a6d5418819460f21cb24c0 100644 (file)
@@ -190,6 +190,15 @@ fn main() {
                        writeln!(output, r#"fi.set_value("{}");"#, e.default_value);
                }
 
+               match e.dbtype.as_str() {
+                       "text" => { },
+                       "integer" => { writeln!(output, "fi.set_db_type(zakform::fields::FieldDbType::Integer);"); },
+                       "float" => { writeln!(output, "fi.set_db_type(zakform::fields::FieldDbType::Float);"); },
+                       "date" => { writeln!(output, "fi.set_db_type(zakform::fields::FieldDbType::Date);"); },
+                       "datetime" => { writeln!(output, "fi.set_db_type(zakform::fields::FieldDbType::DateTime);"); },
+                       _ => { },
+               }
+
                if e.max_length > 0 {
                        writeln!(output, "fi.set_maxlen({});", e.max_length);
                }