Posts by Max Naegele • 9 points
5 posts
-
-1
votes0
answers37
viewsQ: How to encrypt String in C# and decrypt in Java
I am working on an embedded system where messages are encrypted with C# and need to be decrypted in a system made in Java. Code in C#: public static string Encrypt(string input) { byte[]…
-
-1
votes1
answer202
viewsQ: How to modify Textinput values with Formik?
My situation is as follows: the user informs a zip code and the application queries an API, returning the data I will set in the other fields as city, state etc.. For that I need to change the…
react-nativeasked Max Naegele 9 -
0
votes0
answers39
viewsQ: Connection string Sybase
I am trying to connect to a SQL Anywhere 12 database with iAnywhere.Data.Sqlanywhere.dll, and am having trouble specifying the connection_string. properties.Add("connection.driver_class",…
-
0
votes0
answers42
viewsQ: Connect via 64 bit odbc in Sybase database
I am trying to connect to a database via Odbc, and I use the driver System.Data.Odbc. In odbc 32-bit works already, in odbc 64-bit does not. IDictionary<string, string> properties = new…
-
-1
votes1
answer63
viewsQ: Exception when querying using DTO in EF . core
I get the following error when executing the query: "Cannot create a DbSet for 'Cliente_dto' because this type is not included in the model for the context." public IQueryable<TEntity>…