Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个应用程序来将信息存储在 sq-lite 表中。
但我想从用户那里获取表信息,如表名、列名和列数,用户也可以通过表名编辑它,删除列添加新列。我该怎么做。
我为表格字段添加示例屏幕
Android 允许您执行任意 SQL 字符串。从您的 UI 构造一个 SQL 字符串,然后将该字符串输入到类似于db.execute(string).
db.execute(string)
参考