gaoqiangz

Results 12 issues of gaoqiangz

rust: ```rust impl Frame { fn throw(&self, ex: String) -> Result { Err(ex) } } impl EventHandler for Frame { displatch_script_call! { fn throw(Value); } } ``` js: ```javascript try...

bug
sciter-engine

Global value for all threads output. Pattern argument: `XG`, `gmdc` * `{XG(node_id)}` - `node-win-554488715635` * `{XG(nonexistent_key)(no mapping)}` - `no mapping`

blocked

**SELECT** always returns -1,maybe not supported by driver? **UPDATE** always return wrong number..... I have tried flowing providers: > "Driver={SQL Server Native Client 10.0};Server={ip,port};Database=master;Uid=sa;Pwd=..." and > "Driver={SQL Server};Server={ip,port};Database=master;Uid=sa;Pwd=..."

Support to customize the runtime associated with `spawn` to solve the problem of across runtimes. Scenario: The connection connected by the runtime `A`, use by the runtime `B`, destroy `A`...

This PR adds two features `decimal_support` and `empty_is_null`. # Feature `decimal_support` #115 The `decimal_support` feature enables support for Decimal float type calculation using the `rust_decimal` library. Note that due to...

```ts const useStyles = makeStyles({ root: { [` & .item:hover, & .item-selected `]: { backgroundColor: '#fff', } } }); ```

🐞 bug

`conn.simple_exec("EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE WITH OVERRIDE")` panic: `thread 'tokio-runtime-worker-0' panicked at 'resultset: unexpected token: ReturnStatus(0)'`

bug

```rust let mut client = Client::connect(config, tcp.compat_write()).await?; //cancel while executing { let rv = tokio::time::timeout( std::time::Duration::from_secs(3), client.simple_query("WAITFOR DELAY '00:10'"), ) .await; println!("{:?}", rv); } //will never complete { let rv...

How to reset the connection?I want to used it in the connection pool, like `sp_reset_connection` does.

```sql CREATE TABLE t_test( id INT NOT NULL, ) INSERT INTO t_test(id) VALUES(1); CREATE TRIGGER [dbo].[tr_test] ON [dbo].[t_test] AFTER INSERT,UPDATE,DELETE AS BEGIN PRINT 'tr_test'; END ``` ```rust let rv =...