emgee3
emgee3
This happens when one updates and the underlying LESS variables change between versions. I haven't thought up a simple way to fix this, but probably documenting this fact would be...
This is almost certainly a bug. I'll take a pull request.
@yanxiaoyan Your [`settings.json`](https://github.com/emgee3/meteor-mssql#settings) file does not need to be in the project, but you do need to reference this file when launching Meteor. Example: ``` $ meteor --settings /path/to/settings.json ```...
The `Sql` object is only exposed on the server. So if you have the following code on the server: ``` if (Meteor.isServer) { Meteor.startup(function () { Sql.q("select 1 as num",...
Correct, the `Sql` object is server-only. You do not want clients able to write arbitrary SQL code. So if you need to get the results of a query to the...
So what you're running into isn't really a `emgee:mssql` problem, there's a bit more you have to learn about how async works in Meteor. Your template helper isn't going to...
I'd need to see the code it's used in... it definitely lets you run more than 10 queries
I don't see anything here particularly wrong, though, if your SQL Server disconnects you'll have issues. If all you're doing is running that particular query once, you can still tokenize...