ODBC Error C # Input string error

0

I have a small system installed on a server.

They use it from 5 PCs and it works correctly, but from the 6th PC it returns the error.

  

The input string does not have the correct format.

    OdbcDataAdapter daMovims = new OdbcDataAdapter(SQL, cnnDataset);
    DataSet dsMovims = new DataSet("Movims");
    daMovims.FillSchema(dsMovims, SchemaType.Source, "Movims");
    daMovims.Fill(dsMovims, "Movims");

In the last line is the error, the strange thing is that I use this same structure in other projects that I have and I had never failed.

I checked the ODBC configuration of the PC and it is the same as the other PCs where everything works correctly.

I would appreciate if you could comment, it took me a few days with this problem.

    
asked by Luis Angel Valderrama Orozco 19.09.2018 в 22:04
source

0 answers