From 78d7066e43a0ff37fbfd32e79265bc28fef217fa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 28 Jan 2024 17:10:01 +0000 Subject: [PATCH] Create docs --- docs/api/Red/Driver/Pg.md | 2 +- docs/api/Red/Driver/SQLite.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/Red/Driver/Pg.md b/docs/api/Red/Driver/Pg.md index 8f2899b1..2f9bd75d 100644 --- a/docs/api/Red/Driver/Pg.md +++ b/docs/api/Red/Driver/Pg.md @@ -1,4 +1,4 @@ -class submethod BUILD (Red::Driver::Pg: :$!dbh, Str :$!user, Str :$!password, Str :$!host = "127.0.0.1", Int :$!port = 5432, Str :$!dbname, *%_) { #`(Submethod|140482098991472) ... } +class submethod BUILD (Red::Driver::Pg: :$!dbh, Str :$!user, Str :$!password, Str :$!host = "127.0.0.1", Int :$!port = 5432, Str :$!dbname, *%_) { #`(Submethod|139754466614512) ... } -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Data accepted by the Pg driver constructor: dbh : DB::Pg object user : User to be used to connect to the database password: Password to be used to connect to the database host : To be connected to port : What port to connect dbname : Database name diff --git a/docs/api/Red/Driver/SQLite.md b/docs/api/Red/Driver/SQLite.md index 799f50c3..8dd926b5 100644 --- a/docs/api/Red/Driver/SQLite.md +++ b/docs/api/Red/Driver/SQLite.md @@ -1,4 +1,4 @@ -class submethod BUILD (Red::Driver::SQLite: DBDish::SQLite::Connection :$!dbh, Str :$!database = ":memory:", *%_) { #`(Submethod|140400744012800) ... } +class submethod BUILD (Red::Driver::SQLite: DBDish::SQLite::Connection :$!dbh, Str :$!database = ":memory:", *%_) { #`(Submethod|139711220954160) ... } ------------------------------------------------------------------------------------------------------------------------------------------------------- Data accepted by the SQLite driver constructor: dbh : DBDish::SQLite object database: File name or C<:memory:> to a in memory DB (default)