About 52 results
Open links in new tab
  1. When to use the terms "delimiter," "terminator," and "separator"

    The terms, delimiter, separator originate from the classical idea of storage, conceptually, being comprised of files, records, and fields, (a file has many records, a record has many fields). In this …

  2. sql - Delimiters in MySQL - Stack Overflow

    Apr 21, 2012 · You define a DELIMITER to tell the mysql client to treat the statements, functions, stored procedures or triggers as an entire statement. Normally in a .sql file you set a different DELIMITER …

  3. mysql - Es necesario escribir DELIMITER para crear un trigger o para ...

    Aug 16, 2019 · DELIMITER: Se refiere a un delimitador para nuestras consultas SQL, permite decirle a MySQL que todo antes de un delimitador forma parte de un solo bloque de codigo, tu puedes elegir …

  4. c - What is a delimiter? - Stack Overflow

    Oct 6, 2020 · A delimiter is anything you want it to be so long as it can be reliably detected and doesn't overlap with potential data. For example "hi" uses " as a delimiter, which means you must do "hi …

  5. What are delimiters for in Regular Expressions? - Stack Overflow

    Sep 22, 2023 · The delimiter's role is not to affect how the regex is interpreted in terms of pattern matching. Instead, it provides a way to separate the regex pattern from other parts of the code or …

  6. database - What's the best separator/delimiter character (s) for a ...

    Closed 5 years ago. What's the best separator/delimiter character (s) for a plaintext db file? I considered using |, ,, <TAB>, ;, etc. But they all seem to be possible to break when the nearby entries have …

  7. MySQL create stored procedure syntax with delimiter

    #1304 - PROCEDURE addfields already exists What is the proper syntax for making a stored procedure with a delimiter and dropping it if it exists first?

  8. What is a more unique delimiter than comma for separating strings?

    Mar 12, 2013 · What is a good delimiter to denote that strings should be separated based on that character that isn't typically used by users in their writings? I'm going to be combining these fields …

  9. How do I split a string on a delimiter in Bash? - Stack Overflow

    May 28, 2009 · Split string based on delimiter in bash (version >=4.2) In pure bash, we can create an array with elements split by a temporary value for IFS (the input field separator). The IFS, among …

  10. sql - What does DELIMITER // do in a Trigger? - Stack Overflow

    Aug 28, 2009 · In SQL you close each statement with a delimiter, which is by default a semicolon (;). In a trigger you need to write multiple statements, each ending in a semicolon. To tell MySQL that those …