8701bfa2a94fa44f60935e3a95b724e9e6582773
FAQ/Questions/Using-Stored-Procedures-In-Izenda-6.md
| ... | ... | @@ -299,7 +299,9 @@ First, the [[MySqlConnectionString|/API/CodeSamples/MySqlConnectionString]] must |
| 299 | 299 | |
| 300 | 300 | Example: |
| 301 | 301 | |
| 302 | -`Driver={MySQL ODBC 5.2 ANSI Driver};DSN=MySQL;Server=YOUR_SERVER_IP;Port=YOUR_SERVER_PORT;Database=northwind;User=northwind;Password=traders;Option=3;MULTI_STATEMENTS=1` |
|
| 302 | +```csharp |
|
| 303 | +Driver={MySQL ODBC 5.2 ANSI Driver};DSN=MySQL;Server=YOUR_SERVER_IP;Port=YOUR_SERVER_PORT;Database=northwind;User=northwind;Password=traders;Option=3;MULTI_STATEMENTS=1 |
|
| 304 | +``` |
|
| 303 | 305 | |
| 304 | 306 | Second, the stored procedure definition must contain a pattern of statements similar to the example below. Note that any line that does not include `/* Izenda-specific code */` may be substituted for your own code. Any place the stored procedure name appears such as `[sp_name]_spResult` requires the specific string `_spResult` on the end of the identifier to function properly. |
| 305 | 307 |