8
8
using System . Diagnostics ;
9
9
using System . Diagnostics . CodeAnalysis ;
10
10
using System . Linq ;
11
+ using System . Text ;
11
12
using System . Threading ;
12
13
using System . Threading . Tasks ;
13
14
using Microsoft . Data . Sqlite . Properties ;
@@ -470,15 +471,19 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
470
471
{
471
472
DisposePreparedStatements ( disposing : false ) ;
472
473
474
+ var byteCount = Encoding . UTF8 . GetByteCount ( _commandText ) ;
475
+ var sql = new byte [ byteCount + 1 ] ;
476
+ Encoding . UTF8 . GetBytes ( _commandText , 0 , _commandText . Length , sql , 0 ) ;
477
+
473
478
int rc ;
474
479
sqlite3_stmt stmt ;
475
- var tail = _commandText ;
480
+ var start = 0 ;
476
481
do
477
482
{
478
483
timer . Start ( ) ;
479
484
480
- string nextTail ;
481
- while ( IsBusy ( rc = sqlite3_prepare_v2 ( _connection ! . Handle , tail , out stmt , out nextTail ) ) )
485
+ ReadOnlySpan < byte > tail ;
486
+ while ( IsBusy ( rc = sqlite3_prepare_v2 ( _connection ! . Handle , sql . AsSpan ( start ) , out stmt , out tail ) ) )
482
487
{
483
488
if ( CommandTimeout != 0
484
489
&& timer . ElapsedMilliseconds >= CommandTimeout * 1000L )
@@ -490,14 +495,14 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
490
495
}
491
496
492
497
timer . Stop ( ) ;
493
- tail = nextTail ;
498
+ start = sql . Length - tail . Length ;
494
499
495
500
SqliteException . ThrowExceptionForRC ( rc , _connection . Handle ) ;
496
501
497
502
// Statement was empty, white space, or a comment
498
503
if ( stmt . IsInvalid )
499
504
{
500
- if ( tail . Length != 0 )
505
+ if ( start < byteCount )
501
506
{
502
507
continue ;
503
508
}
@@ -509,7 +514,7 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
509
514
510
515
yield return stmt ;
511
516
}
512
- while ( tail . Length != 0 ) ;
517
+ while ( start < byteCount ) ;
513
518
514
519
_prepared = true ;
515
520
}
0 commit comments