PerfectlySoft / Perfect-MySQL

A stand-alone Swift wrapper around the MySQL client library, enabling access to MySQL servers.
https://www.perfect.org
Apache License 2.0
128 stars 61 forks source link

Rows returned as array of strings #3

Open dpburton opened 8 years ago

dpburton commented 8 years ago

When fetching a row such as row = results.next() it returns an Element, and getting the fields using row[0] etc. This makes ugly code. In other languages I can do something like row["columnName"] to get the data I'm looking for.

Fabio1988 commented 2 years ago

17