summaryrefslogtreecommitdiff
path: root/Perl.xs
diff options
context:
space:
mode:
Diffstat (limited to 'Perl.xs')
-rw-r--r--Perl.xs54
1 files changed, 54 insertions, 0 deletions
diff --git a/Perl.xs b/Perl.xs
new file mode 100644
index 0000000..048e9d9
--- /dev/null
+++ b/Perl.xs
@@ -0,0 +1,54 @@
+/* This is a skeleton driver that only serves as a basic sanity check
+ that the Driver.xst mechansim doesn't have compile-time errors in it.
+ vim: ts=8:sw=4:expandtab
+*/
+
+#define PERL_NO_GET_CONTEXT
+#include "DBIXS.h"
+#include "dbd_xsh.h"
+
+#undef DBIh_SET_ERR_CHAR /* to syntax check emulation */
+#include "dbivport.h"
+
+DBISTATE_DECLARE;
+
+
+struct imp_drh_st {
+ dbih_drc_t com; /* MUST be first element in structure */
+};
+struct imp_dbh_st {
+ dbih_dbc_t com; /* MUST be first element in structure */
+};
+struct imp_sth_st {
+ dbih_stc_t com; /* MUST be first element in structure */
+};
+
+
+
+#define dbd_discon_all(drh, imp_drh) (drh=drh,imp_drh=imp_drh,1)
+#define dbd_dr_data_sources(drh, imp_drh, attr) (drh=drh,imp_drh=imp_drh,Nullav)
+#define dbd_db_do4(dbh,imp_dbh,p3,p4) (dbh=dbh,imp_dbh=imp_dbh,p3=p3,p4=p4,-2)
+#define dbd_db_last_insert_id(dbh, imp_dbh, p3,p4,p5,p6, attr) \
+ (dbh=dbh,imp_dbh=imp_dbh,p3=p3,p4=p4,p5=p5,p6=p6,&PL_sv_undef)
+#define dbd_take_imp_data(h, imp_xxh, p3) (h=h,imp_xxh=imp_xxh,&PL_sv_undef)
+#define dbd_st_execute_for_fetch(sth, imp_sth, p3, p4) \
+ (sth=sth,imp_sth=imp_sth,p3=p3,p4=p4,&PL_sv_undef)
+
+#define dbd_st_bind_col(sth, imp_sth, param, ref, sql_type, attribs) \
+ (sth=sth,imp_sth=imp_sth,param=param,ref=ref,sql_type=sql_type,attribs=attribs,1)
+
+int /* just to test syntax of macros etc */
+dbd_st_rows(SV *h, imp_sth_t *imp_sth)
+{
+ dTHX;
+ h = h; /* silence unused var warning */
+ DBIh_SET_ERR_CHAR(h, imp_sth, 0, 1, "err msg", "12345", Nullch);
+ return -1;
+}
+
+
+MODULE = DBD::Perl PACKAGE = DBD::Perl
+
+INCLUDE: Perl.xsi
+
+# vim:sw=4:ts=8