mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
222 B
V
14 lines
222 B
V
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'
|
|
}
|