ファイルで可能なように、データ構造をPostgreSQLテーブルに「一度に」読み取って更新する方法があるかどうか疑問に思っています。
Public Structure myStuct
Dim p_id As Integer
Dim p_myInt As Integer
Dim p_myString As String
Dim p_myDecNumber As Double
End Structure
Dim st as myStruct
FileGet (ff, recordnum, st)
OR
st.p_id = 1234
st.myInt = 14
st.myString = "tarzan"
st.myDecNumber = 3.14
FilePut (ff, recordnum, st)
質問は、構造「st」のメンバーのような同じタイプの形成されたデータを持つテーブルがある場合、すべてのメンバーを1つずつ書き込む代わりに、テーブルのあるインデックスで構造全体を挿入/更新することはできません。今やる?