mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
sqlite: create_table()
This commit is contained in:
@ -23,7 +23,7 @@ pub struct DB {
|
||||
pub mut:
|
||||
is_open bool
|
||||
mut:
|
||||
conn &C.sqlite3
|
||||
conn &C.sqlite3
|
||||
}
|
||||
|
||||
pub fn (db DB) str() string {
|
||||
@ -178,3 +178,7 @@ pub fn (db DB) exec_param(query string, param string) []Row {
|
||||
*/
|
||||
pub fn (db DB) insert<T>(x T) {
|
||||
}
|
||||
|
||||
pub fn (db DB) create_table(table_name string, rows []string) {
|
||||
db.exec('create table $table_name (' + rows.join(',\n') + ')')
|
||||
}
|
||||
|
Reference in New Issue
Block a user