mirror of https://github.com/VinGarcia/ksql.git
Remove mention to old name KissSQL
parent
3a9971628a
commit
fc2b32d919
|
@ -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())
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue