Commit 988ad097799e64151ca1111d5f66cd1c24e0b2db
1 parent
33061454
add missing read or transmit files
Showing
3 changed files
with
10 additions
and
2 deletions
Show diff stats
database/db_binds.anubis
| ... | ... | @@ -6,6 +6,11 @@ |
| 6 | 6 | * © Calexium |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | +transmit calexium_lib/database/types/db_id.anubis | |
| 10 | +transmit calexium_lib/database/types/db_date.anubis | |
| 11 | +transmit calexium_lib/database/types/db_time.anubis | |
| 12 | +transmit calexium_lib/database/types/db_datetime.anubis | |
| 13 | +transmit calexium_lib/database/db_types.anubis | |
| 9 | 14 | |
| 10 | 15 | extended version of bind for SQLite3. |
| 11 | 16 | ... | ... |
database/db_update_fields.anubis
| ... | ... | @@ -6,6 +6,7 @@ |
| 6 | 6 | * © Calexium |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | +read system/string.anubis | |
| 9 | 10 | |
| 10 | 11 | public type SQLite3_update_field: |
| 11 | 12 | field(String column, SQLite3Bind bind). |
| ... | ... | @@ -22,7 +23,7 @@ public define (List(SQLite3Bind), String) |
| 22 | 23 | [] then (so_far, join(", ",clause)), |
| 23 | 24 | [ h . t ] then |
| 24 | 25 | if h is field(column, bind) then |
| 25 | - make_clause_and_binds(t, [bind . so_far], ["\""+column+"\" = :v_"+column . clause]) | |
| 26 | + make_update_clause_and_binds(t, [bind . so_far], ["\""+column+"\" = :v_"+column . clause]) | |
| 26 | 27 | } |
| 27 | 28 | . |
| 28 | 29 | |
| ... | ... | @@ -38,6 +39,6 @@ public define (List(SQLite3Bind), String) |
| 38 | 39 | [] then (so_far, join(", ",clause)), |
| 39 | 40 | [ h . t ] then |
| 40 | 41 | if h is field(column, bind) then |
| 41 | - make_clause_and_binds(t, [bind . so_far], ["\""+column+"\" = :v_"+column . clause]) | |
| 42 | + make_insert_clause_and_binds(t, [bind . so_far], ["\""+column+"\" = :v_"+column . clause]) | |
| 42 | 43 | } |
| 43 | 44 | . | ... | ... |
database/db_utils.anubis
| ... | ... | @@ -15,6 +15,8 @@ read data_base/sqlite.anubis |
| 15 | 15 | |
| 16 | 16 | transmit calexium_lib/database/db_types.anubis |
| 17 | 17 | transmit calexium_lib/database/db_utils.anubis |
| 18 | +transmit calexium_lib/database/db_binds.anubis | |
| 19 | +transmit calexium_lib/database/db_update_fields.anubis | |
| 18 | 20 | |
| 19 | 21 | read calexium_lib/net_services_protocols/logger_service.anubis |
| 20 | 22 | ... | ... |