Guides
Data Types
Kysely deals with two distinct types of data types:
- TypeScript types (compile-time)
- JavaScript types (runtime)
TypeScript Types
- TypeScript types are compile-time only
- They don't affect runtime behavior
- You must manually align them with what your database driver returns
- Example: If you define a column as
string
but the database returns anumber
, you'll see:- TypeScript shows:
string
- Runtime receives:
number
- TypeScript shows:
JavaScript Runtime Types
- Determined by your database driver (
pg
,mysql2
, etc.) - Kysely doesn't modify the data returned by drivers
- Exception: Plugins like
CamelCasePlugin
may modify column names
Configuring Runtime Types
PostgreSQL (pg driver)
Use pg-types
to configure return types:
MySQL (mysql2 driver)
Use the typeCast
pool property:
Automatic Type Generation
Third-party tools can generate TypeScript types from your database schema:
Note: These are external tools - refer to their documentation for issues with generated types.
Best Practices
- Always check your database driver's documentation for default type mappings
- Test runtime types in development to ensure TypeScript types match
- Use type generators to maintain type consistency
- Configure runtime type casting at the driver level, not in application code