sql-web 0.2.0

A web-based database browser for SQLite, MySQL, and PostgreSQL written in Rust using Axum, React, and SQLx.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
use serde::{Deserialize, Serialize};
use sqlx::{Column, MySqlPool, PgPool, Row, SqlitePool};
use std::collections::BTreeMap;
use url::Url;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DatabaseConfig {
    pub url: String,
    pub database_type: DatabaseType,
    pub readonly: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum DatabaseType {
    Sqlite,
    Mysql,
    Postgres,
}

impl DatabaseConfig {
    pub fn from_url(url: &str) -> Result<Self, Box<dyn std::error::Error>> {
        let parsed_url = Url::parse(url)?;

        let database_type = match parsed_url.scheme() {
            "sqlite" => DatabaseType::Sqlite,
            "mysql" => DatabaseType::Mysql,
            "postgres" | "postgresql" => DatabaseType::Postgres,
            scheme => return Err(format!("Unsupported database scheme: {scheme}").into()),
        };

        let readonly = parsed_url
            .query_pairs()
            .any(|(key, value)| key == "mode" && value == "ro");

        Ok(DatabaseConfig {
            url: url.to_string(),
            database_type,
            readonly,
        })
    }

    pub fn quote_identifier(&self, identifier: &str) -> String {
        match self.database_type {
            DatabaseType::Mysql => format!("`{}`", identifier.replace('`', "``")),
            DatabaseType::Sqlite | DatabaseType::Postgres => {
                format!("\"{}\"", identifier.replace('"', "\"\""))
            }
        }
    }
}

#[derive(Clone)]
pub enum DatabasePool {
    Sqlite(SqlitePool),
    Mysql(MySqlPool),
    Postgres(PgPool),
}

impl DatabasePool {
    pub async fn connect(config: &DatabaseConfig) -> Result<Self, sqlx::Error> {
        match config.database_type {
            DatabaseType::Sqlite => Ok(Self::Sqlite(SqlitePool::connect(&config.url).await?)),
            DatabaseType::Mysql => Ok(Self::Mysql(MySqlPool::connect(&config.url).await?)),
            DatabaseType::Postgres => Ok(Self::Postgres(PgPool::connect(&config.url).await?)),
        }
    }
}

#[derive(Debug, Clone, Serialize)]
pub struct DatabaseInfo {
    pub filename: Option<String>,
    pub size: Option<u64>,
    pub created: Option<chrono::DateTime<chrono::Utc>>,
    pub modified: Option<chrono::DateTime<chrono::Utc>>,
    pub readonly: bool,
    pub database_type: DatabaseType,
}

impl DatabaseInfo {
    pub fn base_name(&self) -> String {
        match &self.filename {
            Some(path) => std::path::Path::new(path)
                .file_name()
                .unwrap_or_default()
                .to_string_lossy()
                .to_string(),
            None => "database".to_string(),
        }
    }
}

pub struct DatabaseManager<'a> {
    pool: &'a DatabasePool,
    pub config: DatabaseConfig,
}

impl<'a> DatabaseManager<'a> {
    pub fn new(pool: &'a DatabasePool, config: DatabaseConfig) -> Self {
        Self { pool, config }
    }

    pub async fn get_database_info(&self) -> Result<DatabaseInfo, sqlx::Error> {
        match self.config.database_type {
            DatabaseType::Sqlite => self.get_sqlite_info().await,
            DatabaseType::Mysql => self.get_remote_info().await,
            DatabaseType::Postgres => self.get_remote_info().await,
        }
    }

    async fn get_sqlite_info(&self) -> Result<DatabaseInfo, sqlx::Error> {
        let filename = if let Ok(url) = Url::parse(&self.config.url) {
            url.path().to_string()
        } else {
            self.config.url.clone()
        };

        let (size, created, modified) = if let Ok(metadata) = std::fs::metadata(&filename) {
            let created = metadata.created().ok().and_then(|t| {
                chrono::DateTime::from_timestamp(
                    t.duration_since(std::time::UNIX_EPOCH).ok()?.as_secs() as i64,
                    0,
                )
            });
            let modified = metadata.modified().ok().and_then(|t| {
                chrono::DateTime::from_timestamp(
                    t.duration_since(std::time::UNIX_EPOCH).ok()?.as_secs() as i64,
                    0,
                )
            });
            (Some(metadata.len()), created, modified)
        } else {
            (None, None, None)
        };

        Ok(DatabaseInfo {
            filename: Some(filename),
            size,
            created,
            modified,
            readonly: self.config.readonly,
            database_type: self.config.database_type.clone(),
        })
    }

    async fn get_remote_info(&self) -> Result<DatabaseInfo, sqlx::Error> {
        Ok(DatabaseInfo {
            filename: None,
            size: None,
            created: None,
            modified: None,
            readonly: self.config.readonly,
            database_type: self.config.database_type.clone(),
        })
    }

    pub async fn get_tables(&self) -> Result<Vec<String>, sqlx::Error> {
        match self.pool {
            DatabasePool::Sqlite(pool) => {
                let rows = sqlx::query(
                    "SELECT name FROM sqlite_master WHERE type = 'table' AND name NOT LIKE 'sqlite_%' ORDER BY name",
                )
                .fetch_all(pool)
                .await?;
                rows.into_iter().map(|row| row.try_get("name")).collect()
            }
            DatabasePool::Mysql(pool) => {
                let rows = sqlx::query("SHOW TABLES").fetch_all(pool).await?;
                let mut tables = Vec::new();
                for row in rows {
                    if let Some(column) = row.columns().first() {
                        tables.push(row.try_get(column.name())?);
                    }
                }
                Ok(tables)
            }
            DatabasePool::Postgres(pool) => {
                let rows = sqlx::query(
                    "SELECT tablename FROM pg_tables WHERE schemaname = 'public' ORDER BY tablename",
                )
                .fetch_all(pool)
                .await?;
                rows.into_iter()
                    .map(|row| row.try_get("tablename"))
                    .collect()
            }
        }
    }

    pub async fn get_table_info(&self, table_name: &str) -> Result<TableInfo, sqlx::Error> {
        match self.config.database_type {
            DatabaseType::Sqlite => self.get_sqlite_table_info(table_name).await,
            DatabaseType::Mysql => self.get_mysql_table_info(table_name).await,
            DatabaseType::Postgres => self.get_postgres_table_info(table_name).await,
        }
    }

    async fn get_sqlite_table_info(&self, table_name: &str) -> Result<TableInfo, sqlx::Error> {
        let DatabasePool::Sqlite(pool) = self.pool else {
            unreachable!()
        };
        let sql = format!(
            "PRAGMA table_info({})",
            self.config.quote_identifier(table_name)
        );
        let rows = sqlx::query(&sql).fetch_all(pool).await?;

        let mut columns = Vec::new();
        for row in rows {
            columns.push(ColumnInfo {
                name: row.try_get("name")?,
                data_type: row.try_get("type")?,
                nullable: row.try_get::<i32, _>("notnull")? == 0,
                default_value: row.try_get("dflt_value").ok(),
                is_primary_key: row.try_get::<i32, _>("pk")? != 0,
            });
        }

        Ok(TableInfo {
            name: table_name.to_string(),
            columns,
        })
    }

    async fn get_mysql_table_info(&self, table_name: &str) -> Result<TableInfo, sqlx::Error> {
        let DatabasePool::Mysql(pool) = self.pool else {
            unreachable!()
        };
        let sql = format!("DESCRIBE {}", self.config.quote_identifier(table_name));
        let rows = sqlx::query(&sql).fetch_all(pool).await?;

        let mut columns = Vec::new();
        for row in rows {
            columns.push(ColumnInfo {
                name: row.try_get("Field")?,
                data_type: row.try_get("Type")?,
                nullable: row
                    .try_get::<String, _>("Null")?
                    .eq_ignore_ascii_case("YES"),
                default_value: row.try_get("Default").ok(),
                is_primary_key: row.try_get::<String, _>("Key")? == "PRI",
            });
        }

        Ok(TableInfo {
            name: table_name.to_string(),
            columns,
        })
    }

    async fn get_postgres_table_info(&self, table_name: &str) -> Result<TableInfo, sqlx::Error> {
        let DatabasePool::Postgres(pool) = self.pool else {
            unreachable!()
        };
        let rows = sqlx::query(
            r#"
            SELECT
                c.column_name,
                c.data_type,
                c.is_nullable,
                c.column_default,
                CASE WHEN pk.column_name IS NOT NULL THEN true ELSE false END as is_primary_key
            FROM information_schema.columns c
            LEFT JOIN (
                SELECT ku.column_name
                FROM information_schema.table_constraints tc
                JOIN information_schema.key_column_usage ku
                    ON tc.constraint_name = ku.constraint_name
                   AND tc.table_schema = ku.table_schema
                WHERE tc.constraint_type = 'PRIMARY KEY'
                    AND tc.table_schema = 'public'
                    AND tc.table_name = $1
            ) pk ON c.column_name = pk.column_name
            WHERE c.table_schema = 'public' AND c.table_name = $1
            ORDER BY c.ordinal_position
            "#,
        )
        .bind(table_name)
        .fetch_all(pool)
        .await?;

        let mut columns = Vec::new();
        for row in rows {
            columns.push(ColumnInfo {
                name: row.try_get("column_name")?,
                data_type: row.try_get("data_type")?,
                nullable: row
                    .try_get::<String, _>("is_nullable")?
                    .eq_ignore_ascii_case("YES"),
                default_value: row.try_get("column_default").ok(),
                is_primary_key: row.try_get("is_primary_key")?,
            });
        }

        Ok(TableInfo {
            name: table_name.to_string(),
            columns,
        })
    }

    pub async fn execute_query(&self, sql: &str) -> Result<QueryResult, sqlx::Error> {
        match self.pool {
            DatabasePool::Sqlite(pool) => execute_sqlite_query(pool, sql).await,
            DatabasePool::Mysql(pool) => execute_mysql_query(pool, sql).await,
            DatabasePool::Postgres(pool) => execute_postgres_query(pool, sql).await,
        }
    }

    pub async fn get_table_row_count(&self, table_name: &str) -> Result<i64, sqlx::Error> {
        let sql = format!(
            "SELECT COUNT(*) as count FROM {}",
            self.config.quote_identifier(table_name)
        );
        match self.pool {
            DatabasePool::Sqlite(pool) => {
                let row = sqlx::query(&sql).fetch_one(pool).await?;
                row.try_get("count")
            }
            DatabasePool::Mysql(pool) => {
                let row = sqlx::query(&sql).fetch_one(pool).await?;
                row.try_get("count")
            }
            DatabasePool::Postgres(pool) => {
                let row = sqlx::query(&sql).fetch_one(pool).await?;
                row.try_get("count")
            }
        }
    }

    pub async fn get_table_rows(
        &self,
        table_name: &str,
        page: usize,
        per_page: usize,
    ) -> Result<TableRows, sqlx::Error> {
        let page = page.max(1);
        let per_page = per_page.max(1);
        let offset = (page - 1) * per_page;
        let total_rows = self.get_table_row_count(table_name).await?;
        let total_pages = if total_rows == 0 {
            1
        } else {
            ((total_rows as f64) / (per_page as f64)).ceil() as usize
        };

        let sql = format!(
            "SELECT * FROM {} LIMIT {} OFFSET {}",
            self.config.quote_identifier(table_name),
            per_page,
            offset
        );
        let query_result = self.execute_query(&sql).await?;

        Ok(TableRows {
            name: table_name.to_string(),
            columns: query_result.columns,
            rows: query_result.rows,
            total_rows,
            page,
            per_page,
            total_pages,
        })
    }

    pub async fn get_indexes(&self, table_name: &str) -> Result<Vec<IndexInfo>, sqlx::Error> {
        match self.config.database_type {
            DatabaseType::Sqlite => self.get_sqlite_indexes(table_name).await,
            DatabaseType::Mysql => self.get_mysql_indexes(table_name).await,
            DatabaseType::Postgres => self.get_postgres_indexes(table_name).await,
        }
    }

    async fn get_sqlite_indexes(&self, table_name: &str) -> Result<Vec<IndexInfo>, sqlx::Error> {
        let DatabasePool::Sqlite(pool) = self.pool else {
            unreachable!()
        };
        let sql = format!(
            "PRAGMA index_list({})",
            self.config.quote_identifier(table_name)
        );
        let rows = sqlx::query(&sql).fetch_all(pool).await?;

        let mut indexes = Vec::new();
        for row in rows {
            let name: String = row.try_get("name")?;
            let unique: i32 = row.try_get("unique")?;
            let column_sql = format!("PRAGMA index_info({})", self.config.quote_identifier(&name));
            let column_rows = sqlx::query(&column_sql).fetch_all(pool).await?;
            let mut columns = Vec::new();
            for column_row in column_rows {
                columns.push(column_row.try_get("name")?);
            }

            indexes.push(IndexInfo {
                name,
                unique: unique != 0,
                columns,
            });
        }
        Ok(indexes)
    }

    async fn get_mysql_indexes(&self, table_name: &str) -> Result<Vec<IndexInfo>, sqlx::Error> {
        let DatabasePool::Mysql(pool) = self.pool else {
            unreachable!()
        };
        let sql = format!(
            "SHOW INDEX FROM {}",
            self.config.quote_identifier(table_name)
        );
        let rows = sqlx::query(&sql).fetch_all(pool).await?;
        let mut map: BTreeMap<String, IndexInfo> = BTreeMap::new();

        for row in rows {
            let name: String = row.try_get("Key_name")?;
            let column: String = row.try_get("Column_name")?;
            let non_unique: i64 = row.try_get("Non_unique")?;
            let entry = map.entry(name.clone()).or_insert(IndexInfo {
                name,
                unique: non_unique == 0,
                columns: vec![],
            });
            entry.columns.push(column);
        }

        Ok(map.into_values().collect())
    }

    async fn get_postgres_indexes(&self, table_name: &str) -> Result<Vec<IndexInfo>, sqlx::Error> {
        let DatabasePool::Postgres(pool) = self.pool else {
            unreachable!()
        };
        let rows = sqlx::query(
            "SELECT indexname, indexdef FROM pg_indexes WHERE schemaname = 'public' AND tablename = $1 ORDER BY indexname",
        )
        .bind(table_name)
        .fetch_all(pool)
        .await?;

        let mut indexes = Vec::new();
        for row in rows {
            let name: String = row.try_get("indexname")?;
            let definition: String = row.try_get("indexdef")?;
            indexes.push(IndexInfo {
                name,
                unique: definition.to_uppercase().contains("CREATE UNIQUE INDEX"),
                columns: extract_index_columns(&definition),
            });
        }
        Ok(indexes)
    }
}

#[derive(Debug, Clone, Serialize)]
pub struct TableInfo {
    pub name: String,
    pub columns: Vec<ColumnInfo>,
}

#[derive(Debug, Clone, Serialize)]
pub struct ColumnInfo {
    pub name: String,
    pub data_type: String,
    pub nullable: bool,
    pub default_value: Option<String>,
    pub is_primary_key: bool,
}

#[derive(Debug, Clone, Serialize)]
pub struct IndexInfo {
    pub name: String,
    pub unique: bool,
    pub columns: Vec<String>,
}

#[derive(Debug, Clone, Serialize)]
pub struct QueryResult {
    pub columns: Vec<String>,
    pub rows: Vec<Vec<Option<String>>>,
    pub rows_affected: Option<u64>,
}

#[derive(Debug, Clone, Serialize)]
pub struct TableRows {
    pub name: String,
    pub columns: Vec<String>,
    pub rows: Vec<Vec<Option<String>>>,
    pub total_rows: i64,
    pub page: usize,
    pub per_page: usize,
    pub total_pages: usize,
}

pub fn escape_string_literal(value: &str) -> String {
    format!("'{}'", value.replace('\'', "''"))
}

pub fn optional_sql_value(value: Option<&String>) -> String {
    match value {
        Some(value) if !value.is_empty() => escape_string_literal(value),
        _ => "NULL".to_string(),
    }
}

pub fn is_write_operation(sql: &str) -> bool {
    let sql_upper = sql.trim_start().to_uppercase();
    sql_upper.starts_with("INSERT")
        || sql_upper.starts_with("UPDATE")
        || sql_upper.starts_with("DELETE")
        || sql_upper.starts_with("DROP")
        || sql_upper.starts_with("CREATE")
        || sql_upper.starts_with("ALTER")
        || sql_upper.starts_with("TRUNCATE")
}

async fn execute_sqlite_query(pool: &SqlitePool, sql: &str) -> Result<QueryResult, sqlx::Error> {
    if returns_rows(sql) {
        let rows = sqlx::query(sql).fetch_all(pool).await?;
        let columns = rows
            .first()
            .map(|row| {
                row.columns()
                    .iter()
                    .map(|col| col.name().to_string())
                    .collect()
            })
            .unwrap_or_default();

        let mut result_rows = Vec::new();
        for row in rows {
            let mut row_data = Vec::new();
            for i in 0..row.columns().len() {
                row_data.push(sqlite_cell_to_string(&row, i));
            }
            result_rows.push(row_data);
        }
        Ok(QueryResult {
            columns,
            rows: result_rows,
            rows_affected: None,
        })
    } else {
        let result = sqlx::query(sql).execute(pool).await?;
        Ok(QueryResult {
            columns: vec![],
            rows: vec![],
            rows_affected: Some(result.rows_affected()),
        })
    }
}

async fn execute_mysql_query(pool: &MySqlPool, sql: &str) -> Result<QueryResult, sqlx::Error> {
    if returns_rows(sql) {
        let rows = sqlx::query(sql).fetch_all(pool).await?;
        let columns = rows
            .first()
            .map(|row| {
                row.columns()
                    .iter()
                    .map(|col| col.name().to_string())
                    .collect()
            })
            .unwrap_or_default();

        let mut result_rows = Vec::new();
        for row in rows {
            let mut row_data = Vec::new();
            for i in 0..row.columns().len() {
                row_data.push(mysql_cell_to_string(&row, i));
            }
            result_rows.push(row_data);
        }
        Ok(QueryResult {
            columns,
            rows: result_rows,
            rows_affected: None,
        })
    } else {
        let result = sqlx::query(sql).execute(pool).await?;
        Ok(QueryResult {
            columns: vec![],
            rows: vec![],
            rows_affected: Some(result.rows_affected()),
        })
    }
}

async fn execute_postgres_query(pool: &PgPool, sql: &str) -> Result<QueryResult, sqlx::Error> {
    if returns_rows(sql) {
        let rows = sqlx::query(sql).fetch_all(pool).await?;
        let columns = rows
            .first()
            .map(|row| {
                row.columns()
                    .iter()
                    .map(|col| col.name().to_string())
                    .collect()
            })
            .unwrap_or_default();

        let mut result_rows = Vec::new();
        for row in rows {
            let mut row_data = Vec::new();
            for i in 0..row.columns().len() {
                row_data.push(postgres_cell_to_string(&row, i));
            }
            result_rows.push(row_data);
        }
        Ok(QueryResult {
            columns,
            rows: result_rows,
            rows_affected: None,
        })
    } else {
        let result = sqlx::query(sql).execute(pool).await?;
        Ok(QueryResult {
            columns: vec![],
            rows: vec![],
            rows_affected: Some(result.rows_affected()),
        })
    }
}

fn returns_rows(sql: &str) -> bool {
    let sql_upper = sql.trim_start().to_uppercase();
    sql_upper.starts_with("SELECT")
        || sql_upper.starts_with("WITH")
        || sql_upper.starts_with("SHOW")
        || sql_upper.starts_with("DESCRIBE")
        || sql_upper.starts_with("PRAGMA")
}

fn sqlite_cell_to_string(row: &sqlx::sqlite::SqliteRow, index: usize) -> Option<String> {
    row.try_get::<Option<String>, _>(index)
        .ok()
        .flatten()
        .or_else(|| {
            row.try_get::<Option<i64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<f64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<Vec<u8>>, _>(index)
                .ok()
                .flatten()
                .map(|v| String::from_utf8_lossy(&v).to_string())
        })
}

fn mysql_cell_to_string(row: &sqlx::mysql::MySqlRow, index: usize) -> Option<String> {
    row.try_get::<Option<String>, _>(index)
        .ok()
        .flatten()
        .or_else(|| {
            row.try_get::<Option<i64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<i32>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<u64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<u32>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<f64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<f32>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<bool>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveDateTime>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveDate>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveTime>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<Vec<u8>>, _>(index)
                .ok()
                .flatten()
                .map(|v| String::from_utf8_lossy(&v).to_string())
        })
}

fn postgres_cell_to_string(row: &sqlx::postgres::PgRow, index: usize) -> Option<String> {
    row.try_get::<Option<String>, _>(index)
        .ok()
        .flatten()
        .or_else(|| {
            row.try_get::<Option<i64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<i32>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<f64>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<f32>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<bool>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveDateTime>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveDate>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::NaiveTime>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<chrono::DateTime<chrono::Utc>>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_rfc3339())
        })
        .or_else(|| {
            row.try_get::<Option<serde_json::Value>, _>(index)
                .ok()
                .flatten()
                .map(|v| v.to_string())
        })
        .or_else(|| {
            row.try_get::<Option<Vec<u8>>, _>(index)
                .ok()
                .flatten()
                .map(|v| String::from_utf8_lossy(&v).to_string())
        })
}

fn extract_index_columns(definition: &str) -> Vec<String> {
    definition
        .rsplit_once('(')
        .and_then(|(_, rest)| rest.split_once(')'))
        .map(|(columns, _)| {
            columns
                .split(',')
                .map(|column| column.trim().trim_matches('"').to_string())
                .collect()
        })
        .unwrap_or_default()
}