Remove mention to old name KissSQL

pull/29/head
Vinícius Garcia 2022-09-28 21:04:15 -03:00
parent 3a9971628a
commit fc2b32d919
5 changed files with 5 additions and 5 deletions

View File

@ -309,7 +309,7 @@ func main() {
})
if err != nil {
// This will also cause an automatic rollback and then panic again
// so that we don't hide the panic inside the KissSQL library
// so that we don't hide the panic inside the KSQL library
panic(err.Error())
}

View File

@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) {
return ksql.NewWithAdapter(NewSQLAdapter(db), "mysql")
}
// New instantiates a new KissSQL client using the "mysql" driver
// New instantiates a new KSQL client using the "mysql" driver
func New(
_ context.Context,
connectionString string,

View File

@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) {
return ksql.NewWithAdapter(NewSQLAdapter(db), "sqlite3")
}
// New instantiates a new KissSQL client using the "sqlite3" driver
// New instantiates a new KSQL client using the "sqlite3" driver
func New(
_ context.Context,
connectionString string,

View File

@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) {
return ksql.NewWithAdapter(NewSQLAdapter(db), "sqlserver")
}
// New instantiates a new KissSQL client using the "sqlserver" driver
// New instantiates a new KSQL client using the "sqlserver" driver
func New(
_ context.Context,
connectionString string,

View File

@ -166,7 +166,7 @@ func main() {
})
if err != nil {
// This will also cause an automatic rollback and then panic again
// so that we don't hide the panic inside the KissSQL library
// so that we don't hide the panic inside the KSQL library
panic(err.Error())
}