So, this:
cmd = new OdbcCommand( string.Format( @\"
SELECT *
FROM Bobby_Tables
WHERE Name = {0}\", \"Little Bobby Drop Tables\" ), odbcConnection );
I guess that your problem is that the first line got broken in three. This is because of bug http://youtrack.jetbrains.com/issue/RSRP-288271 that was fixed in ReSharper 7.0. You should consider upgrading or turning off option ReSharper | Options -> Code Editing | C# | Formatting style | Line breaks and wrapping -> LineWrapping | Wrap long lines
.