edge-sql icon indicating copy to clipboard operation
edge-sql copied to clipboard

Access MS SQL from Node.js using Edge.js

Results 15 edge-sql issues
Sort by recently updated
recently updated
newest added

I've added: - ability to open/close a connection - execute non query commands - management of multiple result set - timeout param - ability to connect to mySql database (with...

- Timeout defaults to 30 seconds - http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.commandtimeout%28v=vs.110%29.aspx In reference to issue: https://github.com/tjanczuk/edge/issues/211 Note: Hilariously, I didn't notice [this pull request from @Miramac](https://github.com/tjanczuk/edge-sql/pull/10) before I did this. Feel free to...

``` javascript edge.func({ source: '{the_sql_code}', timeout: 12 //command timeout in seconds, 0 means no limit }); ```

When I read the source code, I noticed it has support for executing stored procedures which was added in Nov 2013. I tried it out and it seems to work...

When attempting to select a field of Geometry type within a query, the execution fails returning an error of "Data is Null." Detailed error: ``` { Error: Data is Null....

Hi. Can I use EDGE-SQL with other DB than MS-SQL? Thanks

I have a project which uses Edge-SQL quite successfully, but if I launch my edge-sql script in the background (bash: "node myapp.js &"), whenever the SQL code is executed on...

ReadAsync doesn't work on Mono, so I updated it to use the BeginExecuteReader natively.

..." as well as "exec". Added 2 changes 1. Very minor change. Add support for "execute" as well as "exec" for those that like to painfully spell everything out :)...