File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ gem install pg -- --with-pg-config=/opt/local/lib/postgresql[version number]/bin
45
45
46
46
** ArchLinux** : ` pacman -S postgresql-libs `
47
47
48
- ##Getting Started with [ PostgreSQL] ( https://www.postgresqltutorial.com/postgresql-getting-started )
48
+ ## Getting Started with [ PostgreSQL] ( https://www.postgresqltutorial.com/postgresql-getting-started )
49
49
50
50
Read this section to learn how to install and connect to PostgreSQL
51
51
[ * Windows* ] ( https://www.postgresqltutorial.com/install-postgresql ) ;
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ pub fn (db DB) exec_param_many(query string, params []string) ![]Row {
279
279
}
280
280
}
281
281
282
- // exec_param2 executes a query with 1 parameter ($1), and returns either an error on failure, or the full result set on success
282
+ // exec_param executes a query with 1 parameter ($1), and returns either an error on failure, or the full result set on success
283
283
pub fn (db DB) exec_param (query string , param string ) ! []Row {
284
284
return db.exec_param_many (query, [param])
285
285
}
You can’t perform that action at this time.
0 commit comments