edward3h / kiwiproc

Java annotation processor to generate JDBC implementation for SQL queries
GNU Lesser General Public License v2.1
0 stars 0 forks source link

Mapping between camelCase and snake_case names #51

Open edward3h opened 1 week ago

edward3h commented 1 week ago

Java code typically uses camelCase for parameter names. Databases tend to have columns named with snake_case, and may be case insensitive. Mapping between the two currently only works with exact matches. It should work for these case differences.