OverHash

Results 36 comments of OverHash

I added ```ts tediousConnection.on('debug', (txt) => logDebug(txt)); tediousConnection.connect((e) => { if (e) { logError(e.message); } }); tediousConnection.on('connect', (e) => { logDebug('connected!'); if (e) { logError(e.message); } }); ``` to try...

I think the incorrect packet there is the `Login7` packet which sends `ServerName:'localhost'` instead of `ServerName: 'xxxx.database.windows.net`. Is there any way to configure that? https://github.com/tediousjs/tedious/blob/ebb023ed90969a7ec0e4b036533ad52739d921f7/src/connection.ts#L2487 in the mean time, I...

The error message _has_ improved quite a bit since I posted this issue, though it is still arguably not perfect. The latest error message reads as: > TypeError: Type 'ReadonlyItem'...

Note: this _might_ be a dupe of #1970, but I'm not sure that it's exactly the same.

I _think_ I just ran into this issue, but with some slightly more interesting behavior: ```luau --!strict type Item = { name: string, dateInserted: number, } local items: {Item} =...

Can you give an example?