You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 20, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: PostgreSQLClient.gd
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -513,7 +513,13 @@ class PostgreSQLQueryResult:
513
513
## These elements are native GDscript types that represent the data resulting from the query.
514
514
vardata_row:= []
515
515
516
-
## No use
516
+
## An Array that contains sub-arrays.
517
+
## These sub-arrays represent for most of the queries the rows of the table where the query was executed.
518
+
## The number of sub-tables depends on the query that has been made.
519
+
## These sub-arrays contain as many elements as number_of_fields_in_a_row.
520
+
## Unlike data_row which contains elements of native GDscript types, raw_data_row contains the raw data sent by the backend which represents the raw data resulting from the query instead of converting it to a native GDScript type.
521
+
## Note that the frontend does not check the validity of the data, so you have to check the data manually.
522
+
## Sub-array data types are of type String if row_description.["format_code"] is 0 and of type PackedByteArray if 1.
517
523
varraw_data_row:= []
518
524
519
525
## This is usually a single word that identifies which SQL command was completed.
0 commit comments