2008-05-30 19:00:42 -04:00
|
|
|
! Copyright (C) 2008 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-02-20 23:59:01 -05:00
|
|
|
USING: kernel ;
|
2008-05-30 19:00:42 -04:00
|
|
|
IN: db.errors
|
|
|
|
|
|
|
|
ERROR: db-error ;
|
|
|
|
ERROR: sql-error ;
|
|
|
|
|
|
|
|
ERROR: table-exists ;
|
|
|
|
ERROR: bad-schema ;
|
2009-02-20 21:40:17 -05:00
|
|
|
|
|
|
|
ERROR: sql-syntax-error error ;
|
|
|
|
|
|
|
|
ERROR: sql-table-exists table ;
|
|
|
|
C: <sql-table-exists> sql-table-exists
|
|
|
|
|
|
|
|
ERROR: sql-table-missing table ;
|
|
|
|
C: <sql-table-missing> sql-table-missing
|