Skip to content
Discussion options

You must be logged in to vote

I also had trouble with this. My specific use case was trying to make SQLModel classes for an existing SQL Server host that has:

  • Multiple databases
  • Tables using title case (i.e. your CommonCrawler table will actually be used as commoncrawler with SQLModel; might be fine if you don't need to interface with existing databases, but this was an issue with my project as the table was not accessible with its lowercase name)
  • Schema prefixes used in the database tables
  • Column names that use title case (SQLModel will always use lowercase column names, even if you define them in title case, notwithstanding the pain you feel in your heart for not following snake case conventions)

How I figured out…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by YuriiMotov
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #93 on August 26, 2025 12:22.