4 questions
1
vote
1
answer
203
views
Vuetify fast fail is not preventing the form from being sent
Vuetify fast fail checks and displays the error message, but the form is sent anyway.
<script setup>
import { ref } from "vue"
const firstName = ref('')
const firstNameRules =...
3
votes
0
answers
513
views
Unexplained C# crash from NTContinue
I have an unexplained C# managed code crash, despite using try/catch. Really Appreciate if someone could help explain what happened!
The crash exception code is: FAIL_FAST_SET_CONTEXT_DENIED_c0000409, ...
4
votes
4
answers
451
views
Do you have any tips to effectively use Java Assert?
I don't see much of the developer using Java Assert, but I am very keen in using them. Could you share some tips to effectively use them?
24
votes
7
answers
29k
views
Way to abort execution of MySQL scripts (raising error perhaps)?
I need to write setup scripts for MySQL (usually run using 'source [file]' from mysql console) that depend partly on existing data, and there are differences in environments, meaning that sometimes ...