mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include <LibSQL/Result.h>
 | |
| #include <LibSQL/Value.h>
 | |
| 
 | |
| endpoint SQLClient
 | |
| {
 | |
|     execution_success(u64 statement_id, u64 execution_id, Vector<DeprecatedString> column_names, bool has_results, size_t created, size_t updated, size_t deleted) =|
 | |
|     next_result(u64 statement_id, u64 execution_id, Vector<SQL::Value> row) =|
 | |
|     results_exhausted(u64 statement_id, u64 execution_id, size_t total_rows) =|
 | |
|     execution_error(u64 statement_id, u64 execution_id, SQL::SQLErrorCode code, DeprecatedString message) =|
 | |
| }
 | 
