stazz / java-sql-generator

A framework to generate syntactically correct SQL statements in a typesafe, easy, and uniform way (without StringBuilders).
49 stars 28 forks source link

Make SQLStatements know the vendor they were created with #5

Closed stazz closed 12 years ago

stazz commented 13 years ago

It is good to know which vendor some SQLStatement came from.

stazz commented 12 years ago

A step towards this was taken now, with various SQL syntax element classes now being aware of the SQLProcessorAggregator. This is the same object that is used by SQLVendor to generate strings out of SQL syntax elements, and now the toString() method of the SQL syntax elements returns the exact same value as the SQLVendor.toString(SQLStatement) method.

Since the original idea behind this issue was to provide this kind of functionality, this issue is considered to be closed.