v/vlib/mssql/config.v

14 lines
222 B
V
Raw Normal View History

2021-05-31 13:08:31 +02:00
module mssql
pub struct Config {
pub:
driver string
server string
uid string
pwd string
}
pub fn (cfg Config) get_conn_str() string {
return 'Driver=$cfg.driver;Server=$cfg.server;UID=$cfg.uid;PWD=$cfg.pwd'
}