sqlite: create_table()

pull/8226/head
Alexander Medvednikov 2021-01-20 09:30:26 +01:00
parent 57af8570fe
commit 158aefc37f
2 changed files with 7 additions and 5 deletions

View File

@ -455,13 +455,11 @@ s := r'hello\nworld'
println(s) // "hello\nworld"
```
Strings can be easily converted to number types:
Strings can be easily converted to integers:
```v
s := '42'
n := s.int() // 42
b := s.byte()
u := s.u32()
```
### String interpolation

View File

@ -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') + ')')
}