Mercurial
comparison deita/d_query.c @ 260:1f9877b637e9
Add Copilot-powered cyberpunk JRPG chat
Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | ae6a88e6e484 |
| children |
comparison
equal
deleted
inserted
replaced
| 259:667156fcd3e3 | 260:1f9877b637e9 |
|---|---|
| 71 if (p_result_set->database_type == DEITA_DATABASE_TYPE_SQLITE3) | 71 if (p_result_set->database_type == DEITA_DATABASE_TYPE_SQLITE3) |
| 72 return deita__sqlite_result_set_next(p_result_set); | 72 return deita__sqlite_result_set_next(p_result_set); |
| 73 | 73 |
| 74 fprintf(stderr, "Deita_Result_Set_Next: Unsupported database type %d\n", p_result_set->database_type); | 74 fprintf(stderr, "Deita_Result_Set_Next: Unsupported database type %d\n", p_result_set->database_type); |
| 75 return FALSE; | 75 return FALSE; |
| 76 } | |
| 77 | |
| 78 boolean Deita_Result_Set_Has_Error(Deita_Result_Set *p_result_set) | |
| 79 { | |
| 80 return p_result_set ? p_result_set->has_error : TRUE; | |
| 76 } | 81 } |
| 77 | 82 |
| 78 int32 Deita_Result_Set_Get_Column_Count(Deita_Result_Set *p_result_set) | 83 int32 Deita_Result_Set_Get_Column_Count(Deita_Result_Set *p_result_set) |
| 79 { | 84 { |
| 80 if (!p_result_set) | 85 if (!p_result_set) |