sqlx-firebird 0.1.0-beta.1

sqlx firebird driver
Documentation
//
// Copyright © 2023, RedSoft
// License: MIT
//

use sqlx_core::column::*;

use crate::{FbTypeInfo, Firebird};

#[derive(Debug, Clone)]
pub struct FbColumn {}

impl Column for FbColumn {
    type Database = Firebird;

    fn ordinal(&self) -> usize {
        todo!()
    }

    fn name(&self) -> &str {
        todo!()
    }

    fn type_info(&self) -> &FbTypeInfo {
        todo!()
    }
}