I'm attempting to create a piece of software that allows a customer to upload data generated by a piece of equipment into their own database.
To do this I designed a dataset in Visual Studio 2015 based on a *.mdb file with the desired tables. The table adapter wizard did a wonderful job of designing table adapters and queries for the strongly typed dataset. All types in this table are Text except for the Date, and Time fields, which are Date/Time. The statement generated was as follows:
INSERT INTO `tblVoltechRunID` (`RunID`, `Date`, `Time`, `ATUnitID`, `PartID`, `FixtureID`, `OperatorID`, `BatchID`, `TransformerSerialNo`, `OverallResult`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
However, when switching to an SQL database, the grave accents caused the insert statement to fail due to a syntax error. Removing the grave accents manually caused the query to succeed.
Is it possible to use visual studio's dataset designer to make a cross platform compatible TableAdapter?