1

guys. I want to display all table names in luasql sqlite3. I tried serveral ways but none of them succeeded. Can anyone help me? thanks a lot!

Gwisin
  • 49
  • 1
  • 5

1 Answers1

2

SELECT name FROM sqlite_master WHERE type = "table"

Morten Bergfall
  • 2,296
  • 4
  • 20
  • 35