Re: [Gambas-user] table name from db object result

2017-05-23 Thread PICCORO McKAY Lenz
i found that: namcol = Split(rsObj.Fields[indexcol].Name, ".") gridproductos.Columns[indexcol].Title = namcol[1] Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-05-22 15:24 GMT-04:00 PICCORO McKAY Lenz : > in sqlite or odbc how can extrat the table name, due i

[Gambas-user] table name from db object result

2017-05-22 Thread PICCORO McKAY Lenz
in sqlite or odbc how can extrat the table name, due i try to autodetect the field name from a result: For indexcol = 0 To rsObj.Fields.Count - 1 rsObj.Fields[indexcol].Name next but in sqlite case i get string: "tablename.colname" event "colname" so there's some property or method that ca