Update of /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3653/src/Adapdev.Data/Sql
Modified Files:
DeleteQuery.cs ISqlQuery.cs InsertQuery.cs SelectQuery.cs
UpdateQuery.cs
Log Message:
Index: InsertQuery.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql/InsertQuery.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** InsertQuery.cs 12 Jan 2006 05:42:34 -0000 1.7
--- InsertQuery.cs 3 Mar 2006 05:22:54 -0000 1.8
***************
*** 116,119 ****
--- 116,124 ----
}
+ public string Statement
+ {
+ get{return this.GetText();}
+ }
+
}
}
\ No newline at end of file
Index: SelectQuery.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql/SelectQuery.cs,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** SelectQuery.cs 21 Jan 2006 06:02:52 -0000 1.12
--- SelectQuery.cs 3 Mar 2006 05:22:54 -0000 1.13
***************
*** 287,290 ****
--- 287,296 ----
}
}
+
+ public string Statement
+ {
+ get{return this.GetText();}
+ }
+
}
Index: ISqlQuery.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql/ISqlQuery.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ISqlQuery.cs 21 Jan 2006 19:42:48 -0000 1.1
--- ISqlQuery.cs 3 Mar 2006 05:22:54 -0000 1.2
***************
*** 29,32 ****
--- 29,37 ----
DbProviderType DbProviderType { get; set; }
ICriteria Criteria{get;}
+ /// <summary>
+ /// Gets the sql statement.
+ /// </summary>
+ /// <value>The statement.</value>
+ string Statement{get;}
}
}
\ No newline at end of file
Index: UpdateQuery.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql/UpdateQuery.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** UpdateQuery.cs 12 Jan 2006 05:42:34 -0000 1.7
--- UpdateQuery.cs 3 Mar 2006 05:22:54 -0000 1.8
***************
*** 83,86 ****
--- 83,91 ----
}
+ public string Statement
+ {
+ get{return this.GetText();}
+ }
+
}
}
\ No newline at end of file
Index: DeleteQuery.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Sql/DeleteQuery.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** DeleteQuery.cs 30 Dec 2005 20:42:11 -0000 1.6
--- DeleteQuery.cs 3 Mar 2006 05:22:54 -0000 1.7
***************
*** 59,62 ****
--- 59,66 ----
}
+ public string Statement
+ {
+ get{return this.GetText();}
+ }
}
}
\ No newline at end of file
|