mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
time: add .format_ss_milli and .format_ss_micro methods
This commit is contained in:
@ -24,6 +24,10 @@ mut:
|
||||
conn &C.sqlite3
|
||||
}
|
||||
|
||||
pub fn (db DB) str() string {
|
||||
return 'sqlite.DB{ conn: ' + ptr_str(db.conn) + ' }'
|
||||
}
|
||||
|
||||
pub struct Row {
|
||||
pub mut:
|
||||
vals []string
|
||||
@ -145,4 +149,3 @@ pub fn (db DB) exec_param(query string, param string) []Row {
|
||||
|
||||
pub fn (db DB) insert<T>(x T) {
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user