Hi,
I tried to read out fieldnames from a tables with recordset. I used following statements
sSQL = "SELECT * FROM " & sTblName & ";"
sRecID = Records.Open(sDBName, sSQL)
sDBfldNames = Records.FieldNames(sRecID)
But i missed 2 or more or all fieldnames using the statements with differnt tables.Why?
A solution of this problem is to use installation_schema from SQL-Databases like I show in SQL Functions FieldType, FileldDimension. I find out, that dictionary sort there value alphanumeric, so I must design a routine to sort the sequence numeric to get the right order.