agiletiger / ojotas

The database-first ORM
MIT License
7 stars 4 forks source link

creating insert statement with ? placeholders breaks #30

Open nicoabie opened 10 months ago

nicoabie commented 10 months ago

the following script breaks, I thing in the toUnnamed function INSERT INTO users (name, email, age) VALUES (?, ?, ?)

this works INSERT INTO users (name, email, age) VALUES (:name, :email, :age)