meteor-mssql icon indicating copy to clipboard operation
meteor-mssql copied to clipboard

Non-reactive SQL Server support for Meteor

Results 12 meteor-mssql issues
Sort by recently updated
recently updated
newest added

I sometimes get the RequestError Could not find stored procedure. I'am sure the stored procedure exists and normally the stored procedure is executed and I get the result. Has somebody...

Hi emgee3, I did: > meteor add emgee:mssql > meteor Got the error: Unable to resolve some modules consider running: meteor npm install --save emgee:mssql I: > meteor npm install...

I have a Problem with a storedprocedure and datatype conversion. If have the following storedprocedure: ALTER PROCEDURE [dbo].[spGoodsMovement02] @IDbName sysname AS DECLARE @Text nvarchar(max) IF EXISTS(SELECT * FROM sys.databases where...

Could I use this for production? Could I use/install `Ms SQL` on `Mac/Ubuntu`?

Is it possible to initialize a sql connection in code instead of from settings? I would like to loop through a collection of connection settings and query each db for...

Maybe this is more of a general JavaScript question, I am not sure? Regardless, I have a column named 'Property Status' and 'Application ID' and I am getting an error...

I have tried my application on a couple different servers and using this module you can only run a maximum of 10 queries to a mssql server before it stops...

I'd like to execute a stored procedure like this: ``` var opts = { sp : "procedureName", inputs : [ { name: 'param1', type: Sql.driver.Int, value: 0 } ], outputs...

On line 94 of mssql.js you are calling cb without the returnValue passed back from the 'request.execute' call: ``` request.execute(opts.sp, function(err, recordsets, returnValue) { return cb(err, recordsets) }); ```