Gaetano Lazzo
Gaetano Lazzo
I'm using `var reader = await command.ExecuteReaderAsync (CommandBehavior.Default)` both with mySql and SqlServer, both with Windows and Linux and it seem to work. see [edge-sql](https://github.com/gaelazzo/edge-sql) and the project [jsMySqlDriver](https://github.com/gaelazzo/jsMySqlDriver) for...
I've resolved this allowing generic sql code to be executed and returning any data from the server to the client. So it's sufficient to declare n variables, calling the sp...
Hi, you can find all the code here https://github.com/gaelazzo/edge-sql the javascript client is here https://github.com/gaelazzo/jsSqlServerDriver
Yes it does support integrated security or any kind of connection string, using the parameter option.useTrustedConnection of the constructor function Connection(options) you can find in jsSqlServerDriver. You can see the...
To correctly deserialize dates you have to do some trick with the $httpProvider I ended up with something like ``` app .config(['$httpProvider', function($httpProvider) { var regexIso8601 = /^(\d{4}|\+\d{6})(?:-(\d{2})(?:-(\d{2})(?:T(\d{2}):(\d{2}):(\d{2})\.(\d{1,})(Z|([\-+])(\d{2}):(\d{2})))))$/; /** *...
My library does support both. It's sufficient to call it with raw parameter set to false. For very big packet of data the meta-row is much less band-consuming cause column...
To easily convert from (meta-rows) to object[] you can use the function simpleObjectify /** - simplified objectifier having an array of column names for first argument - @private - @param...
Please write me under https://github.com/gaelazzo/edge-sql/issues 2016-03-30 13:12 GMT+02:00 forensicsguy20012004 [email protected]: > so I am using a js function to get the data from the database as such: > var getDSCServers...