We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
' will not be handled properly in the following:
'
Table something.thing { id int [note: "this statement CAN'T be compiled correctly"] }
The text was updated successfully, but these errors were encountered:
@fivegrant could you check if you have the most recent version? It should have been fixed in 1.0.2 (latest is 1.0.3)
>>> from pydbml import PyDBML >>> d = PyDBML(""" ... Table something.thing { ... id int [note: "this statement CAN'T be compiled correctly"] ... } ... """) >>> d.tables[0] <Table 'something' 'thing'> >>> d.tables[0][0] <Column 'id', 'int'> >>> d.tables[0][0].note Note("this statement CAN'T be compiled correctly")
Sorry, something went wrong.
Ah, ok, there's still a problem with exporting quotes. Will be fixed in the next version!
>>> print(d.dbml) Table "something"."thing" { "id" int [note: 'this statement CAN'T be compiled correctly'] }
Fixed in 1.0.4
No branches or pull requests
'
will not be handled properly in the following:The text was updated successfully, but these errors were encountered: