我有一个xml文件。我需要创建xsd模式文件。我尝试编写代码,但我的xsd架构中的resuts是Emptyfiles。我将不胜感激。 我需要在我的sql server(SSIS)中加载XSD文件。
>
>
>
>x=1
>for (i in 1:nrow(dataframe)) {
>
> if (dataframe[i,lastcolumn] == 2 && x==1) {
>
> start.event <- dataframe[i,]
>
> }
>
> if (dataframe[i,lastcolumn] != 2) {
> end.event <- dataframe[i-1,]
>
> }
>
> else {
>
> df[1] <- dataframe( start.event:end.event , )
> x = 1
> }
> }
MY First XSD SCHEMA
$(function(){
$(document).on('click','.click_link',function(){
$("#dialog_loader").dialog("open");
$("#dialog_loader").css({'display':'show'});
return false;
});
$("#dialog_loader").dialog({resizable: false,
height:"auto",
modal: true,
minWidth: 400,
autoOpen:false,
position: 'center top',
buttons: {
"Update": function() {
var form_data = new FormData();
$.each($("input[type='file']")[0].files, function(i, file) {
form_data.append('file', file);
});
form_data.append("status", 'update');
$.ajax({
url:path,
type:'POST',
dataType: "HTML",
contentType : false,
processData : false,
data:form_data,
success:function(msg){
if(msg==1)
{
alert(123);
}
}
});
},
"Approve":function(){
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
$(document).on('click','.add_more',function(e){
e.preventDefault();
var filePresent = document.getElementsByClassName('file')[document.getElementsByClassName('file').length-1].files.length;
if(filePresent >0 ){
$(this).parent().find('#extra_file_div').find('.file_div_child').append("<br/><input name='file_uploads[]' type='file' class='multi_files file' /><button class='remove'>X</button>");
//$(this).before("<div class='file_div_child'><input name='file_uploads[]' type='file' class='multi_files file' /><button class='remove'>X</button></div>");
}
});
$(document).on('change','input:file',
function(){
$('input:file').removeClass('multi_files');
if ($(this).val()) {
if($(this).parent().parent().find('.remove').length <1)
{
$(this).after("<button class='remove first_remove' >X</button>");
}
$('.add_more').show();
}
else
{
$('.add_more').hide();
}
});
$(document).on('click','.remove',function(){
var length = $('#dialog_attachments').find(".file").length;
if(length > 1 ){
$(this).prev('input:file').remove();
$(this).prev('br').remove();
$(this).remove();
}
else
{
$(".file").val('');
$(this).remove();
$(this).parent('.file_div_child').find('br').remove();
$('.add_more').hide();
}
return false;
});
});